1.Python多条件判断: 多条件判断if: passelse: pass循环 while for i = 0 while i > 1: print('hello') else: print('结束!') i +=1 for i in range(5): if i ==2: print(2) break else: print('正常循环结束后执行') 例子: #登录程序,最多输入错误3次,输入账号密码,校验为空的情况,输入错误达到3次提示#for循环# import datetime# to…
用while循环打印字符串 #if i in s: # print ( i ) s='nanfjkhndaol' index = 0 while 1 : print (s[index]) index+=1 if index == len(s) : break 统计输入字符串中的数字 s = input ('请输入:’) count = 0 for i in s: if i . isdigit(): count + = 1 print(count) 增删改查命令 1.增 append( ) 增加…