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

Rules to define Python Identifiers

1)An identifier in Python must start with a letter a to z or A to Z or an underscore (_) succeeded by zero or more letters, digits (0 to 9), and underscores.

2)Special characters are not allowed in identifiers.

3)An identifier should not be a reserved keyword of Python.

4)Python is a case-sensitive programming language.

5)In Python Class names must start with an uppercase letter For example class Student. All identifiers start with a lowercase letter in Python.

6)A private identifier in python starts with a single leading underscore (_name).

7)A strongly private identifier in python starts with two leading underscores (__name) defined.

8)The identifier is a language-defined special name, If the identifier starts and ends with two underscores (__name__).