From 382a60006622600cf361635391b5f9ad5e2b11c3 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Fri, 6 Mar 2020 18:13:45 +0100 Subject: [PATCH 1/4] taki tak commit --- test.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..93a11b2 --- /dev/null +++ b/test.py @@ -0,0 +1 @@ +print('Hello') \ No newline at end of file From a8b0cf38137fe91b6e7b3ec07e9a945056b115a5 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Fri, 6 Mar 2020 19:04:24 +0100 Subject: [PATCH 2/4] initail commit --- tees.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tees.py diff --git a/tees.py b/tees.py new file mode 100644 index 0000000..02bc1af --- /dev/null +++ b/tees.py @@ -0,0 +1,25 @@ +print("Hello World ") +a = "Xd" +print(a) +a = 6 +print(a) +a = .2 +print(a) +a = True +print(a) +a = 6 +print(a) +a = None +print(a) +# calc +a = 5 +b = 2 +print(5 + 2) +print(5 - 2) +print(5 * 2) +print(5 / 2) +print(5 // 2) +print(5 % 2) +print(5 ** 2) + + From 62a57e81b64096156a3fab9331e90c5c1547ac13 Mon Sep 17 00:00:00 2001 From: pBartosz Date: Fri, 6 Mar 2020 19:17:38 +0100 Subject: [PATCH 3/4] re --- tees.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tees.py b/tees.py index 02bc1af..8bebfec 100644 --- a/tees.py +++ b/tees.py @@ -21,5 +21,15 @@ print(5 // 2) print(5 % 2) print(5 ** 2) +a+=1 +print(a) +a+=1 +print(a) +a/=1 +print(a) +a*=1 +print(a) +import math +print(math.pow(math.e,10)) From 64c5331c874e12d61b6e38c16bd56d77f38df8dd Mon Sep 17 00:00:00 2001 From: pBartosz Date: Fri, 6 Mar 2020 19:39:55 +0100 Subject: [PATCH 4/4] 3rd --- tees.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tees.py b/tees.py index 8bebfec..cac3536 100644 --- a/tees.py +++ b/tees.py @@ -31,5 +31,8 @@ print(a) import math print(math.pow(math.e,10)) - - +print(math.pow(math.e,10)) +print(math.ceil(4.8)) +print(math.floor(4.8)) +a = input("Wpisz a:") +print(a)