Variables
Comments in Python
# This is inline comment in python
"""
This is also multiline comment
"""
'''
This is multiline comment
So, all of it within triple quoted part
will be treated as a commented code
We also use this multi-line comment for variable declaration
'''Namespaces in Python
Variables
Declaring a Variable
Reference For Further Reading
w3 Resource
Last updated