From 4ece80865574ee6d2edcaa475b4543bd501fa8c4 Mon Sep 17 00:00:00 2001 From: local Date: Fri, 6 Mar 2020 18:13:05 +0100 Subject: [PATCH 1/2] =?UTF-8?q?jakie=C5=9B=20zmiany?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 start.py diff --git a/start.py b/start.py new file mode 100644 index 0000000..a3ea3c6 --- /dev/null +++ b/start.py @@ -0,0 +1 @@ +print("Hello") \ No newline at end of file From faa422be598711425da2fbc30810b4c410c76d4b Mon Sep 17 00:00:00 2001 From: local Date: Fri, 6 Mar 2020 19:11:16 +0100 Subject: [PATCH 2/2] =?UTF-8?q?jakie=C5=9B=20zmiany?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/start.py b/start.py index a3ea3c6..ba1de23 100644 --- a/start.py +++ b/start.py @@ -1 +1,16 @@ -print("Hello") \ No newline at end of file +a = u"Helloł " +print(a) +a, b = 333, 562353.55 +print(a) +a = 333 * 1.0 #aghgfasdhf +print(a, b) +a = a/2 +print(a) +a /= 2 +print(a) +a = u"Helloł %(a)d" %{'a': b} +print(a) +lista = ['sdsd', "sd", 233, 33.2] +print(lista) +slownik = {'a': b} +print(slownik)