Python Introduction:

print ("Hello World")
Hello World

Python Variables Introcuction

message = input()
print (message)
Hello World
def request(prompt):
    print("Question "+prompt)
    msg = input()
    print("Answer"+msg)

request("Why?")
Question Why?
Answeryes

testing