Home 02. Comments
Post
Cancel

02. Comments

Statements that ignores python interpreter.

  • Single line comment start from #
  • Multi line comment written in 3 double inverted comma """ """ or ''' '''

Single Line Comment

1
# This is single line comment

Multi Line Comment

1
2
3
4
"""
This is example of
multi line comment
"""

Comment After Statement

1
import random   # importing built-in module
This post is licensed under CC BY 4.0 by the author.

01. Introduction to Python

03. Print Function in Python