SAMPLE OUTPUT: Input your first name: John Input your last name: Doe Input your course: 3515 Input your address: Sta. Cruz, Tinambac, C.5. Input your birth year: 1999. Hello John Doe, you are a BSIS student from Sta Cruz, Tinambac, C.S. your age is 22
name = input("Input your first name: ")
last_name = input("Input your last name: ")
course = input("Input your course and major: ")
address = input ("Input your address: ")
age = input("Input your age: ")
print("Hello", name, last_name, ", you are a ",course, "student from", address, "your age is", age)
Comments
Leave a comment