Last active
May 14, 2019 13:58
-
-
Save daythatidie/c078e6c13e4e07abdef46d3f8079c97e to your computer and use it in GitHub Desktop.
Practicepython Exercise 1
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
# --------- Exercise 1 | |
name = input('Enter your name: ') | |
age = int(input('Enter your age: ')) | |
year = 2019 - age + 99 | |
result = f'Hi, {name}! You will be 100 years old in {year} year.' | |
print(result) | |
number = int(input('Enter number')) | |
print((result +'\n') * number) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment