Python中For循环


1.

for i in range(10):
    print(i)

输出结果

F:\py\pyProject\venv\Scripts\python.exe F:/py/pyProject/venv/while.py
0
1
2
3
4
5
6
7
8
9

Process finished with exit code 0

2.

age_of_oldboy = 56

for i in range(3):
    guess_age =int(input ("guess age:"))
    if guess_age == age_of_oldboy:
        print ("you got it")
        break
    elif guess_age > age_of_oldboy:
        print("think bigger!!!")
    else:
        print("think smaller!!")

else:
     print("you have tried many times...")

输出结果

F:\py\pyProject\venv\Scripts\python.exe F:/py/pyProject/venv/while.py
guess age:23
think smaller!!
guess age:45
think smaller!!
guess age:78
think bigger!!!
you have tried many times...

Process finished with exit code 0

3 for循环隔1个打印出1个,

for i in range(0,10,2):
    print(i)

输出结果为

F:\py\pyProject\venv\Scripts\python.exe F:/py/pyProject/venv/while.py
0
2
4
6
8

Process finished with exit code 0


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM