this code is being difficult with me. It says that the " mark by the word "are" is wrong..but i dont know why. I tried to seperate the " marks and commas but that didn't seem to help much.
print "Welcome to my program "
print "Please type your name, age, city, state, and zip,"
name = input("name ")
age = input("age ")
city = input("city ")
state = input("state ")
zip = input("zip ")
print "Your name is", name "you are", age "years old and live in", city , state, zip
print "Thank you for joining us!."
print "Welcome to my program "
print "Please type your name, age, city, state, and zip,"
name = input("name ")
age = input("age ")
city = input("city ")
state = input("state ")
zip = input("zip ")
print "Your name is", name "you are", age "years old and live in", city , state, zip
print "Thank you for joining us!."
Comment