Created
July 6, 2020 23:18
-
-
Save mathandy/b7e3097fe245a0b7ca70c0b70e12ee19 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
firstname = input("What is your first name? ") | |
lastname = input("What is your last name? ") | |
fullname = firstname + " " + lastname | |
age = int(input("What is your age? ")) | |
address = input("What is your address? ") | |
print("Hi {}.".format(fullname)) | |
print("Your address is {}.".format(address)) | |
if age >= 18: | |
print("You are {} years old and you can vote.".format(age)) | |
else: | |
print("You are {} years old and you cannot vote yet.".format(age)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment