学无止境
我们为梦想前行!

python的if语句用法

python的if语句用法,也许最有名的是 if 语句。例如:

x = int(raw_input(“Please enter an integer: “))
Please enter an integer: 42
if x < 0:
… x = 0
… print ‘Negative changed to zero’
… elif x == 0:
… print ‘Zero’
… elif x == 1:
… print ‘Single’
… else:
… print ‘More’

More
可能会有零到多个 elif 部分,else 是可选的。关键字 elif 是 “else if” 的缩写,这个可以有效避免过深的缩进。if … elif … elif … 序列用于替代其它语言中的 switch 或 case 语句。

赞(0)
转载请注明出处链接:Pycharm » python的if语句用法

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址