From 67f6d003576d3228d47f9dff7d2020d9d991fe60 Mon Sep 17 00:00:00 2001 From: llnu Date: Tue, 26 May 2020 09:28:42 +0200 Subject: [PATCH] ex12 created, unanswered question added --- balazs/python-the-hard-way/ex12/notes.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 balazs/python-the-hard-way/ex12/notes.org diff --git a/balazs/python-the-hard-way/ex12/notes.org b/balazs/python-the-hard-way/ex12/notes.org new file mode 100644 index 0000000..50efbeb --- /dev/null +++ b/balazs/python-the-hard-way/ex12/notes.org @@ -0,0 +1,13 @@ + + +* The code: +age = input("How old are you? ") +height = input("How tall are you? ") +weight = input("How much do you weigh? ") + + +print(f"So, you're {age} old, {height} tall and {weight} heavy.") + +* When will input run? At the variable initalization or when calling the function? + +* How do I debug, and step through the code to see what's happening in the background (and possibly see the anwser for the prev question)?