Python Forum
Printing in python 3.6.5 - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Printing in python 3.6.5 (/thread-11044.html)



Printing in python 3.6.5 - water_fox - Jun-19-2018

Anyone able to help me understand why this does not print to the console?

def display_intro():
    print('''why is this multi line comment
              not printing to the console?''')


print()



RE: Printing in python 3.6.5 - snippsat - Jun-19-2018

Use code tag BBCode.
You most call function.
def display_intro():
    print('''why is this multi line comment
              not printing to the console?''')

display_intro()
Output:
why is this multi line comment not printing to the console?