循环语句while
1+2+3+4+…………+9999的和为多少
循环语句for
循环五次
for i in range(5):
print("hello")
count = 0
while count < 5:
print("hello")
count += 1
range()总结
range(5) 循环5次, 默认从0开始,到5-1结束;
range(1,6) 循环5次,从0开始,到6-1结束;
range(1,10,2)
range(2,101,2) 找出1~100之间所有的偶数;
range(1,101,2) 找出1~100之间所有的奇数;
死循环, 无限循环
count = 0 # 1,2,3,4,5
while True:
print("hello world")
count += 1
if count == 5:
break 遇到这个关键字直接跳出循环, 不再执行循环;
字符串
1.字符串定义
s1="this's a test"
s2='"hello"'
s3="""
"hello" this's a test
"""
s4='this\'s a test'