diff --git a/create-dataset.py b/create-dataset.py index 69a7ae1..9bc5ca3 100644 --- a/create-dataset.py +++ b/create-dataset.py @@ -1 +1,7 @@ -print('hello world z dockera') \ No newline at end of file +text = "Hello world" + +filename = "file.txt" + +with open(filename, "w") as file: + + file.write(text) \ No newline at end of file