Answers for "how to make comment in python"

1

how to add a cooment in python

#How to add a comment/multi-line comment in python

#This is a single line comment

#For a single line comment, you need to add a hashtag in python.

"""
This is the multi-line comment
You start of with triple single quotes or else you can also start with
triple doulble quotes (hope that makes sense) and then you end with triple
single quotes or triple double quotes
"""
Posted by: Guest on November-13-2020
7

comment in python

# This is a one line comment

"""
This is a comment for multiple lines,
as you can see
"""

""" But also this is valid """
Posted by: Guest on October-05-2020
6

comments in python

# This is a comment
Posted by: Guest on July-04-2020
3

comment in python

# To make a comment in python use the hashtag symbol
Posted by: Guest on November-27-2020
1

how to make a comment in py

A comment in python can be made using the "#" symbol.
Posted by: Guest on May-31-2021
3

python comments

# this is a python comment
Posted by: Guest on September-22-2020

Code answers related to "how to make comment in python"

Python Answers by Framework

Browse Popular Code Answers by Language