s='ABCDEFGHIJKLMNOPQRSTUVWXYZ' num=1 for ch in s: while num <= 20: print(ch) num=num+1
这代码哪里不对吗?
while是个循环啊,小于二十不会跳出来的
while 换成 if 判断就行了撒