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,
相關文章
相關標籤/搜索