ium_z434686/create-dataset.py

7 lines
104 B
Python

text = "Hello world"
filename = "file.txt"
with open(filename, "w") as file:
file.write(text)