How do you write comments in python?

Hi I am looking for how do you write comments in python

3 Likes
  • Single Line Comment:

# Comment Line

  • Multi Lines Comment
"""
Comment Line 1
Comment Line 2
.
.
Comment Line N
"""
1 Like