233k views
0 votes
Answer correct or d.i.e :D

BE WARNED
Write an algorithm using pseudocode that someone else can follow. Choose one of the following options:
1. Decide on the message you would like to display to the screen. Some ideas include:
1. Your favorite book title or TV show and why you like it
2. A few sentences sharing information about you
3. Your favorite sport and team or athlete
2. Use two variables to store your message.

2 Answers

7 votes
Alr bye world :)))))))
User Roy Shilkrot
by
4.5k points
2 votes

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.

User Zilma
by
4.1k points