You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
345 B
14 lines
345 B
### @export "fake"
|
|
import fake_input
|
|
input, input = fake_input.create(['38', '6\'2"', '180lbs'])
|
|
|
|
### @export "code"
|
|
print("How old are you?", end=' ')
|
|
age = input()
|
|
print("How tall are you?", end=' ')
|
|
height = input()
|
|
print("How much do you weigh?", end=' ')
|
|
weight = input()
|
|
|
|
print(f"So, you're {age} old, {height} tall and {weight} heavy.")
|
|
|
|
|