1. for循環(huán)
for循環(huán)可以用來遍歷某一對象(遍歷:通俗點(diǎn)說,就是把這個(gè)循環(huán)中的第一個(gè)元素到最后一個(gè)元素依次訪問一次)。for循環(huán)的基本結(jié)構(gòu)如下:
具體看這個(gè)案例:
設(shè)計(jì)一個(gè)函數(shù),在桌面創(chuàng)建10個(gè)文本,用數(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的用法正文內(nèi)會(huì)詳細(xì)介紹 7 text.write(str(text_name)) 8 &nb