# You use a hastag at the beginning of the line to make anything after it a comment
'''
You can also make a multi line comment
With three single quotes at the beginning and end!
'''
A comment in python can be made using the "#" symbol.
#Use a hash
"""
This is a comment
written in
more than just one line
"""
# This is a single line comment
"""
This is a multi-line comment,
which is also highlighted
"""
#Single Line Comments!
"""
multiline
comments
!
"""
# This is a comment
'''
This is a
MULTI LINE comment!
'''
use # for one line comment on godot and python
'''This the multi line comment in python''' """(Double quote also work)"""
# This is the single line comment in python