11 lines
273 B
Python
11 lines
273 B
Python
# Open file and write
|
|
# with open("beschreibmich.txt", "a") as f:
|
|
# f.write("meganega\n")
|
|
# f.close()
|
|
|
|
# Open file and read content
|
|
with open("beschreibmich.txt", "r") as hs:
|
|
# print(hs.read())
|
|
file_content = hs.read()
|
|
hs.close()
|
|
print(file_content) |