From d6c61d988bfa4255baf9cdae42db59ebee38363f Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 25 May 2021 17:10:49 +0200 Subject: Added files --- src/Lecture4/live/live3.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Lecture4/live/live3.py (limited to 'src/Lecture4/live/live3.py') diff --git a/src/Lecture4/live/live3.py b/src/Lecture4/live/live3.py new file mode 100644 index 0000000..14aa89b --- /dev/null +++ b/src/Lecture4/live/live3.py @@ -0,0 +1,9 @@ +x = int(input("Input something: ")) + +A = [1,2,3] + +for i in range(2,9): + z = 10**i + print("A power of 10:", z) + +print("Bye") -- cgit v1.3