'F' → Fullscreen
Create a new Python program named 1-7-input.
name and their favorite_animal.name = input("What is your name? ")favorite_animal = input("What is your favorite animal? ")
print(f"Nice to meet you, {name}! {favorite_animal}s are pretty cool.")#favorite_food and a hobby they enjoy.name = input("What is your name? ")favorite_animal = input("What is your favorite animal? ")
print(f"Nice to meet you, {name}! {favorite_animal}s are pretty cool.")
favorite_food = input("What is your favorite food? ")hobby = input("What is a hobby you enjoy? ")
print(f"I heard you like {favorite_food} and enjoy {hobby} in your free time.")#adjective and a place.name = input("What is your name? ")favorite_animal = input("What is your favorite animal? ")
print(f"Nice to meet you, {name}! {favorite_animal}s are pretty cool.")
favorite_food = input("What is your favorite food? ")hobby = input("What is a hobby you enjoy? ")
print(f"I heard you like {favorite_food} and enjoy {hobby} in your free time.")
adjective = input("Give me an adjective: ")place = input("Give me a place: ")
print(f"One day, a {adjective} adventure began at the {place}.")#Verify your program works correctly.
What is your name? Anthony [Enter]What is your favorite animal? Dog [Enter]Nice to meet you, Anthony! Dogs are pretty cool.What is your favorite food? pizza [Enter]What is a hobby you enjoy? gaming [Enter]I heard you like pizza and enjoy gaming in your free time.Give me an adjective: mysterious [Enter]Give me a place: library [Enter]One day, a mysterious adventure began at the library.Answer the following questions before submitting your work.
input() always return, no matter what the user types?input() instead of printing it separately first?Submit the required files to the appropriate dropbox.