摘要: ##文件操作 ''' f = open("a.txt","w") #打开一个文件, w模式(写),如果文件不存在就在当前目录下创建 f.write("hello world,i am here") #将字符串写入文件中 f.close() #关闭文件 ''' ''' #read方法:读取指定的字符, 阅读全文
posted @ 2023-02-20 16:55 鹤城 阅读(46) 评论(0) 推荐(0) 编辑