ium_z434686/create-dataset.py

7 lines
104 B
Python
Raw Normal View History

2023-04-18 22:45:32 +02:00
text = "Hello world"
filename = "file.txt"
with open(filename, "w") as file:
file.write(text)