ex12 created, unanswered question added
This commit is contained in:
parent
19e417310c
commit
67f6d00357
1 changed files with 13 additions and 0 deletions
13
balazs/python-the-hard-way/ex12/notes.org
Normal file
13
balazs/python-the-hard-way/ex12/notes.org
Normal file
|
@ -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)?
|
Loading…
Reference in a new issue