From 6e4b09e025655e69e88eaabeb5fdde1ad06cdbd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ga=C5=82ka?= Date: Tue, 18 Apr 2023 22:45:32 +0200 Subject: [PATCH] Update 'create-dataset.py' --- create-dataset.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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