Name

''' ''' (multiline comment)

Examples
"""
     Draws two lines which divides the window 
     into four quadrants. First draws a horizontal
     line and then the vertical line 
""" 
line(0, 50, 100, 50)
line(50, 0, 50, 100)
Description Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the function of your program. Multiline comments are used for large text descriptions of code or to comment out chunks of code while debugging applications. Note that in Python mode you can make multiline comments with single quotes '''like this''' or with double quotes """like this""". Comments are ignored by the interpreter.
Syntax
"""
  comment
"""
or 
'''
   comment
'''
Parameters
commentany sequence of characters
Related # (comment)

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.