Answer:
Insert your pseudocode here:
# Assignment Python Variables worksheet
#10/30/2020
def main():
TVshow = ("Darling in the Franxx")
print(TVshow)
WhyILikeIt = ("Action Romance fighting")
print(WhyILikeIt)
main()
Output
My favorite TV show is Darling in the FRANXX.
I like it because there's a lot of action and fighting.
Review Question
Response
What was the purpose of your program?
The purpose of my program was to say "I like coding" to my teacher. It also gave me a chance to practice my Python skills.
How could your program be useful in the real world?
I'm going to show it to my teacher so she knows I like the class.
What is a problem you ran into, and how did you fix it?
I kept typing “Darling In the FRANXX" without the quotation marks, and it wouldn’t work. When I realized my error, I fixed it and it worked.
Describe one thing you would do differently the next time you write a program.
I learned that it is important to pace myself and pay attention to details. When I found the error, I learned what happens when I don’t use the quotation marks. Now I know I need to pay attention to my code, so I don't leave out important information.