mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-08-05 04:36:23 -04:00

- Non-working trash is cleaned. - Updated from latest git version. - Fixed modules pygame math and others. - Removed old modules added new ones. - All samples work except "net" git-svn-id: svn://kolibrios.org@8535 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
422 B
Python
14 lines
422 B
Python
# Read/Write file example
|
|
# Copyright (C) 2019-2021 Logaev Maxim (turbocat2001), GPLv3
|
|
|
|
import ksys # KolibriOS syscalls
|
|
|
|
fw=ksys.open('my.txt','w') # Open file for writing
|
|
fw.write("I love KolibriOS") # Write symbols to my.txt file
|
|
fw.close() # Close file
|
|
|
|
fr=ksys.open('my.txt', 'r') # Open file for reading
|
|
str=fr.read() # Read symbols from file
|
|
print(str) # Print to console
|
|
fr.close() # Close file
|