Update 'create-dataset.py'

This commit is contained in:
Patryk Gałka 2023-04-18 22:45:32 +02:00
parent dff0cd8d8f
commit 6e4b09e025

View File

@ -1 +1,7 @@
print('hello world z dockera')
text = "Hello world"
filename = "file.txt"
with open(filename, "w") as file:
file.write(text)