mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
12 lines
216 B
Python
12 lines
216 B
Python
f = open('test/python/main.py', 'r')
|
|
s = f.read(10)
|
|
print(s)
|
|
f.close()
|
|
f = open('test/assets/test.jpg', 'rb')
|
|
b = f.read(-1)
|
|
print(b)
|
|
f.close()
|
|
f = open('test/out/write.txt', 'w')
|
|
f.write('Hello World!\n')
|
|
f.close()
|