python的if语句例句_Python入门之if条件语句

Besides the while statement just introduced, Python knows the usual control flow statements known from other languages, with some twists.除了之前介绍的while语句,Python同样支持其他语言通常用的控制流语句,但也有一些区别。

if Statements

Perhaps the most well-known statement type is the if statement. For example:

>>> x = int(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

There can be zero or more elif parts, and the else part is optional. The keyword ‘elif’ is short for ‘else if’, and is useful to avoid excessive indentation. An if … elif … elif … sequence is a substitute for the switch or case statements found in other languages.可以有多个elif语句,关键词elif是else if的缩简写,用于缩减语句长度。if … elif … elif … 与其他语言的switch或case语句的作用相近。

if condition_1:

statement_block_1

elif condition_2:

statement_block_2

else:

statement_block_3

eg:例如

var1 = 100

if var1:

print ("1 - if 表达式条件为 true")

print (var1)

var2 = 0

if var2:

print ("2 - if 表达式条件为 true")

print (var2)

print ("Good bye!")

结果是:

1-if表达式条件为true100Good bye!

u=2561814622,2914155610&fm=173&app=25&f=JPEG?w=640&h=360&s=721C7E8E57A3D8E45A2B826E03007078

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值