#fileIO

fileIO和OS操作文件和目录

1.FileIO操作文件#文件IO,读取文件和创建文件#1.读取键盘输入x=input("pleaseinputnumber")print("您输入的是"+x)#2.打开一个文件(open函数相当于创建一个file对象)fo=open("test.sh","r+")print("文件名:",fo.name)print(...