diff --git a/languages/python.md b/languages/python.md index a6f08d1..93b719a 100644 --- a/languages/python.md +++ b/languages/python.md @@ -125,6 +125,27 @@ | \|= | bitwise or and store| | , | separator as in ( y=x,z=++x )| +
+ +## Comments + +- Comments are very helpful to explain a Python code. + +- They are used to make the code more readable. + +- They never get executed. + +- Comments start with # in Python. + + ```python + + #This is a comment + + print("Welcome!") + + ``` +
+ ### Basic Data Structures ### List