1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
fa=open("D:\\text.txt","rb") print(fa.readline()) fa.close()
fa=open("D:\\text.txt","wb") print("Name of the file:",fa.name) fa.close()
fa=open("write.txt","w") fa.write('python is a bady\nPython')
fa=open("write.txt",'r+') print("Pead String is:",fa.read(16)) fa.close()
fa=open("write.txt",'r+') print("Pead String is:",fa.read(16)) position=fa.tell() print("Cyrrent file position:",position) position=fa.seek(0,0) print("Again read String is:",fa.read(16)) fa.close()
import os os.rename(,) os.remove() os.mkdir() os.chdir() os.rmdir() os.getcwd()
|