官术网_书友最值得收藏!

Flow control and iteration

Python programs consist of a sequence of statements. The interpreter executes each statement in order until there are no more statements. This is true if both files run as the main program as well as files that are loaded via import. All statements, including variable assignment, function definitions, class definitions, and module imports, have equal status. There are no special statements that have higher priority than any other and every statement can be placed anywhere in a program. There are two main ways of controlling the flow of program execution, conditional statements and loops.

The ifelse, and elif statements control the conditional execution of statements. The general format is a series of if and elif statements followed by a final else statement:

    x='one' 
if x==0:
print('False')
elif x==1:
print('True')
else: print('Something else')
#prints 'Something else'

Note the use of the == operator to test for the same values. This returns true if the values are equal; it returns false otherwise. Note also that setting x to a string will return something else rather than generate a type error as may happen in languages that are not dynamically typed. Dynamically typed languages such as Python allow flexible assignment of objects with different types.

The other way of controlling program flow is with loops. They are created using the while or for statements, for example:

主站蜘蛛池模板: 北流市| 固镇县| 普兰店市| 斗六市| 屯门区| 鄄城县| 游戏| 新野县| 星座| 平阴县| 星子县| 穆棱市| 纳雍县| 都江堰市| 左云县| 杭锦旗| 台江县| 寿阳县| 南投县| 林甸县| 天津市| 大港区| 兴化市| 桃源县| 宁海县| 辽阳市| 衡南县| 巴南区| 威远县| 蕉岭县| 东乌| 杭锦旗| 陈巴尔虎旗| 满城县| 定州市| 句容市| 罗定市| 灵璧县| 乐安县| 屏东市| 闻喜县|