Subversion Repositories Kolibri OS

Rev

Rev 8535 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. # Read/Write file example
  2. # Copyright (C) 2019-2021 Logaev Maxim (turbocat2001), GPLv3
  3.  
  4. import file
  5.  
  6. fw=file.open('my.txt','w') # Open file for writing
  7. fw.write("I love KolibriOS") # Write symbols to my.txt file
  8. fw.close() # Close file
  9.  
  10. fr=file.open('my.txt', 'r') # Open file for reading
  11. str=fr.read() # Read symbols from file
  12. print(str)    # Print to console
  13. fr.close()    # Close file
  14.