浅谈Python基础—判断和循环

发布时间:2020-09-12 04:33:54 作者:格格_gloria
来源:脚本之家 阅读:150

判断

缩进代替大括号。

冒号(:)后换号缩进。

if

test=100
if test>50:
 print('OK')
print('test')

浅谈Python基础—判断和循环

if-elif-else

test=50
if test>200:
 print('200')
elif test<100:
 print('100')
else:
 print('100-200')

浅谈Python基础—判断和循环

列表

test1=[123,456,789]
if 123 in test1:
 print('OK')

浅谈Python基础—判断和循环

字典

test2={'hello':123,'world':456}
if 'hello' in test2:
 print('OK')

浅谈Python基础—判断和循环

循环

while

数值

test=0
while test<10:
 print(test)
 test+=1

浅谈Python基础—判断和循环

集合

test1=set(['hello','world'])
while test1:
 test2=test1.pop()
 print(test2)

浅谈Python基础—判断和循环

for

集合

test3=set(['hello','world'])
for t in test3:#相当于foreach
 print(t)

浅谈Python基础—判断和循环

列表

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])

浅谈Python基础—判断和循环

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)

浅谈Python基础—判断和循环

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基础—判断和循环

以上所述是小编给大家介绍的Python基础—判断和循环详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对亿速云网站的支持!

推荐阅读:
  1. python判断和循环
  2. Python条件判断和循环

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

python 判断 循环

上一篇:swiper在angularjs中使用循环轮播失效的解决方法

下一篇:Python破解BiliBili滑块验证码的思路详解(完美避开人机识别)

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》