-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn11.py
More file actions
25 lines (19 loc) · 729 Bytes
/
Copy pathlearn11.py
File metadata and controls
25 lines (19 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
'''
print("How old are you?", end=' ')
age = input()
print("How tall are you?", end=' ')
height = input()
print("How much do you weight?", end=' ')
weight = input()
print(f"So, you're {age} old, {height} tall and {weight} heavy.")
'''
# the end at the print line, tells it to NOT end the line with
# a new line character and go to the next line.
# https://www.programiz.com/python-programming/methods/built-in/input
print("Who do you love?", end=' ')
lover = input()
print("How long have you been together?", end= ' ')
time = input()
print("Where will you guys end up living?", end=' ')
location = input()
print(f"You are in love with {lover}. You guys have been together for {time}, and will live forever in {location}.")