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

Operator overloading in Python is the ability of a single operator to perform more than one operation based on the type of operands. For example the + operator performs addition on two numbers, merges two lists, or concatenates two strings or more strings.

Unary Operator Method
+ __pos__(self)
__neg__(self)