浅谈Python基础—判断和循环
程序员文章站
2023-08-02 22:13:46
判断
缩进代替大括号。
冒号(:)后换号缩进。
if
test=100
if test>50:
print('ok')
print('test...
判断
缩进代替大括号。
冒号(:)后换号缩进。
if
test=100 if test>50: print('ok') print('test')
if-elif-else
test=50 if test>200: print('200') elif test<100: print('100') else: print('100-200')
列表
test1=[123,456,789] if 123 in test1: print('ok')
字典
test2={'hello':123,'world':456} if 'hello' in test2: print('ok')
循环
while
数值
test=0 while test<10: print(test) test+=1
集合
test1=set(['hello','world']) while test1: test2=test1.pop() print(test2)
for
集合
test3=set(['hello','world']) for t in test3:#相当于foreach print(t)
列表
test4=[123,456,789] for i in range(3): print(test4[i])
test5=[123,456,789,34,5435,26,2362,262,26,5] for i in range(len(test5)): print(test5[i])
continue
test6=[11,12,13,14,15,16,17,18,19,20] for i in test6: if i%2==0: print(i) else: continue print(i)
break
test7=[12,13,14,15,16,17,18,19,20] for i in test7: if i%2==0: print(i) else: break print(i)
以上所述是小编给大家介绍的python基础—判断和循环详解整合,希望对大家有所帮助
推荐阅读
-
Python2与python3中 for 循环语句基础与实例分析
-
python cx_Oracle的基础使用方法(连接和增删改查)
-
python分支和循环结构
-
Python十讲 - 第二讲:变量和基础数据类型
-
浅谈区块链和网站建设之间的关系 网站是基础
-
python处理中文编码和判断编码示例
-
Python基础之循环语句用法示例【for、while循环】
-
Python3基础之条件与循环控制实例解析
-
Python3基础之输入和输出实例分析
-
MacOS配置Anaconda3(Miniconda3)下Python3.6、Python3.7和Python2.7环境和基础机器学习、神经网络相关包详解(版本号对应)