python-练习 while 和for 循环

心不动则不痛 提交于 2020-03-01 14:33:59
# while 循环age = 56count = 0while count < 3 :    guess_age=int(input('输入年龄:'))    if guess_age == age:        print('猜到了')        break    elif guess_age > age:        print('猜大了')    else:        print('猜小了')    count +=1    if count==3:        shuru=input('还玩吗(Y/N)')        if shuru != 'n':            count =0else:    print('以输入3次,告辞') '''#从0开始循环,最大到10,步数是2for i in range(0,10,2):    print(i)for i in range(10):    print('---',i)    for j in range(10):        print(j)        if j >5:            break学习无止境,加油
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!