Create a Python file named animal.py. Type the following code into the file, but with your name and the current date:
fave_animal = input("Please enter your favorite animal: ") print("Your favorite animal is the " + fave_animal + ".")
Now save the file ("File/Save All") and run it. The program should ask you to enter the name of your favorite animal, and after you do, it will print out "Your favorite animal is the ."
Once you've verified that your program runs correctly, commit and push your project. Then go to Gradescope and submit your animal.py file from your GitHub repository.
===================================================
-
create script
-
record user input
-
return user input with a messege
-
save the file as animal.py
-
run the code (does it work? if not fix)
-
commit and push
-
upload to Gradescope
-
Drink Beer