python小練習1:設計這樣一個函數,在桌面的文件夾上創建10個文本,以數字給它們命名。
使用for循環即可實現:
for name in range(1,11): desktop_path='C://Users/Lenovo/Desktop/' full_path=desktop_path+str(name)+'.txt' file=open(full_path,'w') file.close()
python小練習1:設計這樣一個函數,在桌面的文件夾上創建10個文本,以數字給它們命名。
使用for循環即可實現:
for name in range(1,11): desktop_path='C://Users/Lenovo/Desktop/' full_path=desktop_path+str(name)+'.txt' file=open(full_path,'w') file.close()
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。