python入门之语句(if语句、while语句、for语句)

时间:2021-05-22

python入门之语句,包括if语句、while语句、for语句,供python初学者参考。

//if语句例子name = 'peirong';if name == 'peirong': print 'this is peirong';elif name== 'maojun': print 'this is maojun';else: print 'others';//while语句i = 0;a = range(10);while i < a.__len__(): print i; i = i+1;//for语句a = range(1,10);for i in a: print i;else: print 'The for loop is over!'//continue 语句a = range(1000)for i in a: if i % 3 == 0: print 'chuyi 3 yu 0 '; elif i % 3 == 1: print 'chuyi 3 yu 1 '; else: continue

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章