Created
October 27, 2016 16:01
-
-
Save zahidhasanemon/c93da70330f83135671e4826e9adfd7a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| from datetime import datetime | |
| now = datetime.now() | |
| name = raw_input("enter your name: ") | |
| age = raw_input("enter your age: ") | |
| nprint = int(raw_input("enter the number of times to print the message: ")) | |
| year = now.year | |
| century = ((100-int(age))+ year) | |
| message = "%s you are now %s and you will be hundread years old in %s "\ | |
| %(name,age,century) | |
| print nprint*message |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment