A. python中的循环语句
两种循环,for循环和while循环,可以互相改写。一般能预测循环次数的用for,不能的用while。
比如求最大公约数,用辗转相除法,不好预估次数,但是还有结束条件,这个就适合用while循环,或者分解质因子,也比较适合用while循环。
遍历列表,字典之类,就适合for循环。
B. python 循环打印26个字母
import string
for word in string.lowercase:
print word
C. 怎么写python循环语句
这个暂时还不需要函数。
A=[1,2,3,9,4,5]
B=[1,2,3,4,5,6]
x=0
whilex<len(A):
ifA[x]inB:
print(A[x])
else:
print("不包含")
x=x+1
输出结果:
D. python 怎么实现无限循环
可以用假设法啊。这是计算机擅长的方法,用一个循环先假设循环节为1,然后依次假设2,3,4,5,6,7,8,9
不用再多了。再多也看不过来。这样就可以轻松算出来了。
1234567891011import sysx=0.12312312313tmps = "%s"%xp = tmps.find('.')if p<0: sys.exit()tmps = tmps[p+1:]for i in xrange(1,9): if tmps[:i]== tmps[i:i*2] and tmps[i:i*2]== tmps[i*2:i*3] : print 'result is %d'%i sys.exit()print 'not found'
上面是一个简单的例子。