Course Content
What is Python?
Introduction of Python and Its setup
0/2
Control Statement
Control statements are used to control the flow of execution depending upon the specified condition/logic.
0/4
File Handling
File handling is an important component of any application. Python has multiple functions for creating, reading, updating, and deleting files.
0/2
Examples
Following are the examples of python scripts to try hands-on, you are ready to start your python journey.
0/7
Python
About Lesson

Expression:
Expression is evaluated and produces the results.
Ex: (10=2)/2

Statements:
This indicates that we are doing something.
Ex: a=10
print(“Calling in proper sequence”)

Comments:
Comments are readable messages for a programmer but it is overlooked by the python interpreter.
a. Single line comment (#)
b. Multi-line comment (”’ ”’)
Ex: #this is a single-line comment
”’ this is
multiple ”’

Function:
A function is a block of code that only runs when it is called. Ex: getStudentMarks()

Block & Indentation:
A group of statements in block indentation at the same level creates a block. Ex: all the statements that are under the function getStudentMarks()