Python之循环结构

1.while count = 0 while count < 5:     print("hello world")     count += 1  # count = count + 1 2.for for i in range(5):     print(i)   else:     print("结束执行....") # range(end): 0~end-1 # range(start,
相关文章
相关标签/搜索