Python Forum

Full Version: Printing in python 3.6.5
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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()
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?