Lecture Module 1 - Introduction
Lecture Module 1 - Introduction
➢ About Python
➢ Installation
➢ Writing the first python program
➢ Writing python .py code
a. Search IDLE
print("Welcome to Python")
then Enter
●
A comment is code inside a Python script that is not executed
or not executed by the machine. Comments are only used to
mark or annotate scripts.
●
Comments are commonly used to let others understand what
the script is doing or to remind the programmer himself if one
day re-edits the script.
●
To use comments you simply write a hash sign
#
followed by your comment
●
or by using a string literal that opens and closes with three “
"""