4.1_控制流1_if__for_语句
4.1_控制流1_if__for_语句
1. if 语句
Python条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。
Python程序语言指定任何非0和非空(null)值为true,0 或者 null为false。
Python 编程中 if 语句用于控制程序的执行,基本形式为:
if判断条件:执行语句……else:执行语句……
其中"判断条件"成立时(非零),则执行后面的语句,而执行内容可以多行,以缩进来区分表示同一范围。
else 为可选语句,当需要在条件不成立时执行内容则可以执行相关语句,具体例子如下:
if 语句的判断条件可以用>(大于)、<(小于)、==(等于)、>=(大于等于)、<=(小于等于)来表示其关系。
if判断条件1:执行语句1……elif 判断条件2:执行语句2……elif 判断条件3:执行语句3……else:执行语句4……
guess = int(input('Enter an integer : '))
print('Bingo! you guessed it right.')
print('(but you do not win any prizes!)')
print('No, the number is higher than that')
# You can do whatever you want in a block ...
print('No, the number is a lower than that')
# you must have guessed > number to reach here
# This last statement is always executed,
# after the if statement is executed.
2. for 语句
Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。
for iterating_var in sequence:statements(s)
当前字母: P 当前字母: y 当前字母: t 当前字母: h 当前字母: o 当前字母: n 当前水果: banana 当前水果: apple 当前水果: mango Good bye!
a_dict = {'Tom':'111', 'Jerry':'222', 'Cathy':'333'}
🐳 作者:hiszm 📢 版权:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,万分感谢。 💬 留言:同时 , 如果文中有什么错误,欢迎指出。以免更多的人被误导。 |