Answer:
The answer is...
Explanation:
It is A or D I would go with D tho
Hope this helped
:)
B. Add actions
A. a presentation without a clear beginign middle and end
A. add action between slides
A template is a predesigned presentation you can use to create a new slide show quickly. Templates often include custom formatting and designs, so they can save you a lot of time and effort when starting a new project.
Answer:
Replace the first blank with:
message = "Hello " + name + ". Your lucky number is " + str(number)
Replace the second blank with:
return message
Explanation:
The first blank needs to be filled with a variable; we can make use of any variable name as long as it follows the variable naming convention.
Having said that, I decided to make use of variable name "message", without the quotes
The next blank is meant to return the variable on the previous line;
Since the variable that was used is message, the next blank will be "return message", without the quotes