Python中For循环
2021-06-26 08:06
标签:RoCE 输出 == trie lse big proc ini put 1. 输出结果 2. 输出结果 3 for循环隔1个打印出1个, 输出结果为 Python中For循环 标签:RoCE 输出 == trie lse big proc ini put 原文地址:https://www.cnblogs.com/wz123/p/9652257.htmlfor 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
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
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