1. for循環(huán)
for循環(huán)可以用來遍歷某一對象(遍歷:通俗點說,就是把這個循環(huán)中的第一個元素到最后一個元素依次訪問一次)。for循環(huán)的基本結構如下:
具體看這個案例:
設計一個函數(shù),在桌面創(chuàng)建10個文本,用數(shù)字從1-10依次給它們命名。
1 def text_create(): 2 path = '/Users/duwangdan/Desktop/' 3 for text_name in range(1,11): 4 # 1-10的范圍需要用到range函數(shù) 5 with open (path + str(text_name) + '.txt','w') as text: 6 # with...as的用法正文內會詳細介紹 7 text.write(str(text_name)) 8 &nb