002 Comments - Comprehensive Python
Code
# 002_comments.py
# In this program, we print "Hello, World!"
# in English and Tamil,
# and "Hello Mars!".
print("Hello, World!")
print("Hello Mars!")
print("வணக்கம் உலகம்") # Hello World in Tamil
# print("This won't be printed")
Notes
- iTerm https://iterm2.com/
- US Windows Keyboard
- US Mac Keyboard
- In-line comment
- Full line comment
- Multiline comment
- What Python sees?
- Schools of thought
- We need commenting
- Java
- Clojure
- C / C++
- Code is comment
- Ruby
- Python
- Agile Manifesto https://agilemanifesto.org/
- We need commenting
