Source File: ex12.py

These are excerpts shown as snippets from a main file named ex12.py. They generally only make sense in the context of the exercise text, but they're shown here separated by H2 heading tags for audible readers like NV Access.

Snippet fake

import fake_input
input, input = fake_input.create(['38', '6\'2"', '180lbs'])

Snippet 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.")