除了刚才介绍的while语句之外,Python也从其他语言借鉴了其他流程控制语句,并做了相应改变。Python中流程控制语句的详细介绍
4.1 if Statements
或许最广为人知的语句就是 if 语句了。例如:
x = int(input("Please enter an integer: "))if x < 0:
x = 0print('Negative changed to zero')elif x == 0:print('Zero')elif x == 1:print('Single')else:print('More')
查看更多关于Python中流程控制语句的详细介绍的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did84799