标签:循环 桌面 idt com 数字 pen src style txt
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个文本,以数字给它们命名。
标签:循环 桌面 idt com 数字 pen src style txt
原文地址:https://www.cnblogs.com/wyhluckdog/p/10745827.html