python用while遍历list_python用while遍历list_python while、for循环、list列表

1、while循环(循环也可叫迭代、遍历)

while 循环 必须有一个计数器

count=0

while count<10:

print(‘hello‘)

count=count+1

2、猜数字游戏例子

import random    #引用随机数模块

num=random.randint(1,100) #随机产生一个数字,1到100

count=0

print(num)

while count<7:

guess=input(‘请输入你猜的数字:‘)

guess=int(guess)

if guess>num:

print(‘猜大了‘)

continue

elif guess

print(‘猜小了‘)

continue

else:

print(‘恭喜你猜对了‘)

break #立即结束循环

count=count+1

else:

print(‘次数用尽,请充值‘)

3、count=count+1 相当于count+=1(+、-、*、/写法一致)

4、断点:点击语句前面,出现小红点,使用debug运行。

5、for循环

num=10

for i in range(10):    #表示循环10次

guess = input(‘请输入你猜的数字:‘)

guess = int(guess

你可能感兴趣的:(python用while遍历list_python用while遍历list_python while、for循环、list列表)