Answer:
Pseudocode:
define func main
accept two parameters
create two variables from those parameters
v1 = title
v2=message
print v1, v2
returns None
call the func including the two arguments
Code:
def main(p1, p2):
""" this is a docstring, the function accepts two parameters p1 and p2 and prints them out"""
____title = p1
____message = p2
____print(title)
____print(message)
main()
Reminder
this didnot include the comment you are to add about your name, date and details
-- comments are placed after a pound sign (#)
also "____" the dashes behind the variables are not indentation just empasising them, as they are done with either by
NEVER MIX THEM CHOOSE AN INDENTATION STYLE AND STICK TO IT
Finally the call function doesn't have a colon called as a nomal object, just as the print funtion also you may include the dicstring if neccessary.
DONT FORGET THE REVIEW QUESTIONS