Comment
Features
This function is used to provide an additional description of the code. The comments do not affect the source code since they are excluded from code processing.
A statement following "#" is recognized as a comment. A block that begins with ’’’ and ends with ’’’ is recognized as a comment.
- Comment is used to provide an additional description of the code. The comments do not affect the source code since they are excluded from code processing
- A statement following "#" is recognized as a comment.
- A block that begins with ’’’ and ends with ’’’ is recognized as a comment
Example
# Comment example 1
’’’
Comment example 2