本文主要是介绍0523运维周内贺磊(python),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
循环语句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
这篇关于0523运维周内贺磊(python)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!