How would you create multi-line comment in Python ?
Using triple quotes as
How would you create multi-line comment in Python ? Read More »
Comments are lines in a program to better understand the code. It is ignored by the interpreter and used by people for easy readability. Comments in python can be added as single line comments using ‘#’ or multi line comments using triple quotes “”” comment “””.
What is a comment ? In how many ways can you create comments in Python ? Read More »