#循环语句
#使用while循环打印出0-100的所有数字
#循环的初始化条件
num=1
#当num<100时,会一直执行循环体
while num<101:
print("num=",num)
#迭代语句
num+=1
print("循环结束")
print("---------------------------")
#使用while遍历字符串
str="The age of Mike is 18"
i=0
while i<len(str):
print(str[i],end="")
i=i+1
print("---------------------------")
#使用for循环遍历字符串
a="The age of Mike is 18"
#for循环,遍历a字符串
for ch in a: #迭代变量ch
print(ch,end="")
print("---------------------------")
#用for循环实现1-100的累加,并输出累加和
print("计算1+2+...+100的结果为:")
#保存累加结果的变量
sum=0
#获取从1-100的值,并做累加操作
for i in range(101):
sum += i
print(sum)
标签:语句,ch,num,Python,累加,循环,print,100 From: https://blog.51cto.com/u_15988249/6397744