Tag: Learn Python the Hard Way Exercise 12

LPTHW - Exercise 12: Prompting People

LPTHW - Exercise 12 Turns out I jumped the gun a little with that extra form I made last time for the Study Questions. This lesson covers the way I made that form... 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.") Learn Python the Hard Way - Study Drills 1.

Read more...