Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Chapter 13: File Handling

  • open(filename,mode) modes: "r","w","a"
f=open("data.txt","w")
f.write("Hello")
f.close()