これを試してみて、Pythonに非常に慣れていない -
def newlines():
print()
print()
print()
question = "Which online Course you have signed up, dude?"
response = "Good Luck to you, dude!"
print(question), newlines(), input(), newlines(), print(response)
Python 3.2.* では、出力は次のとおりです。
Which online Course you have signed up, dude?
Nothing
Good Luck to you, dude!
(None, None, "Nothing", None) # Where this output is coming from ?
また、これはpython 3.3ベータ版では発生していません