May 2017
Intermediate to advanced
280 pages
6h 2m
English
In Python, there are two types of comments--one is a single-line comment and the other is multiline comment. For a single-line comment, # is used, while for a multiline comment, triple quotes """ are used:
#This is a single line comment in Pythonprint "Hello World" #This is a single comment in Python""" For multi-linecomment use threedouble quotes..."""print "Hello World!"
Read now
Unlock full access