You are on page 1of 2

print("Practice Activity")

print("")

name = input("Enter your name: ")

age = int(input("Enter your age: "))

address = input("Enter your address: ")

height = float(input("Enter your height: "))

print('_________________________________________________')

print("MY PERSONAL PROFILE")

print("My name: "+name)

print("My age: "+str(age)+" years old")

print("My address: "+address)

print("My height: "+str(height)+" cm tall")

print('_________________________________________________')

print("MY FAVES")

print("Comfort Food:")

food = ["buttered shrimp", "sinigang", "fried chicken", "caldereta", "molo soup"]

print(food)

print("")

print("Hobbies:")

hobbies = ["reading wattpad stories", "watching movies", "playing mobile games"]

print(hobbies)
print("")

print("Songs:")

songs = ["Araw-araw", "Leaves", "The Scientist", "Fools Gold", "Yelllow"]

print(songs)

print("")

print('_________________________________________________')

print("Hey, You!")

Question1 = input("What is love? ")

print("")

Question2 = input("What is your motto in life? ")

Question3 = input("If you could meet one person, dead or alive, who would it be?")

print('_________________________________________________')

print("What is love? "+Question1)

print("What is your motto in life? "+Question2)

print("If you could meet one person, dead or alive, who would it be?"+Question3)

print("")

#print("Hello, World!")

print("[Program finished]")

You might also like