Why python makes the difference between expressions and statements? [closed]
- What are the reasons for putting the border开发者_StackOverflow社区 between expressions and statements in python? Are there any limitations that require that distinction?
- What is the benefit for the python programmers?
One benefit is that Python programmers don't have to maintain code such as:
while((x = foo()) != value)
精彩评论