Multi line comments in Python

PHOTO EMBED

Wed Aug 02 2023 12:58:59 GMT+0000 (Coordinated Universal Time)

Saved by @pythonHub #python #python-hub #basics

#First
#Put a
# hash 
#before all the lines
#you want to comment

print('This must be quite obvious, anyways the next option is:')

  #Second
"""put the
multi line either between three 
double quotes or"""
'''between
three
single quotes'''
#
content_copyCOPY