Last active
June 13, 2018 08:41
-
-
Save martin-martin/e828bacd09542bc87a509a38b6760dfb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = "Mycroft" | |
def print_name_box(): | |
print(name) | |
def smaller_box(): | |
print(name) | |
def smallest_box(): | |
print(name) | |
smallest_box() | |
smaller_box() | |
print_name_box() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment