comments
β’ 44 words β’ 1 min β’ updated
python
# this is an explanation that a is the result of the function foo()
a = foo()
## a = 2 + 1
a = 1 + 2Convention: Use ## to denote an alternative equivalent expression.
Reminder: Comments != Documentation (=doc comments)