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
//Made By: @GrunclePug#7015 |
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
first_name = str(input("What is your first name?: ")) | |
middle_name = str(input("What is your middle name?: ")) | |
last_name = str(input("What is your last name?: ")) | |
good = "Oh that's wonderful!" | |
bad = "Oh I'm sorry to hear :(" | |
idk = "Well, at least you're not upset." | |
first_name = first_name.capitalize() | |
middle_name = middle_name.capitalize() |
NewerOlder