Wednesday 26 June 2019

Comment Lines in Python

Comment Lines in Python:

Two types of comment lines are available in Python.
1.  Single line comment line
#this is single-line comment
2. Multiline comment line
#
#
#
(or)
“”” this is a multi-line comment line
It is used for more one sentence”””

Previous Topic:


You may like the following posts:

1 comment:

Files with Exception handling

#Ask the user to take two input integer values var a,b try:     a=int(input("enter any integer value:"))     b=int(input(&qu...