Python Programming (Hindi)
0 / 203
(0%)
Python Programming (Hindi)
Programming
Python Programming (Hindi)
17 Modules
155 Lessons
Satisfaction guarantee · Lifetime access
Course Curriculum
1
Python Data Types
1 activities
Python Data Types
25m 42s
Video
2
variable declaration and initialization
2 activities
Variables
20m 26s
Video
Swap Two Numbers
8m 47s
Video
3
Input function
1 activities
Take input from user
Video
4
Arithmetic operation
1 activities
Arithmetic Operations
15m 22s
Video
5
Relational Operators in Python
1 activities
Relational Operators
9m 34s
Video
6
logical operator
1 activities
Logical Operators
8m 29s
Video
7
Sequence in Python
5 activities
List Data Type in Python
10m 9s
Video
String Data Type in Python
11m 12s
Video
Range Function
7m 26s
Video
Membership Operator
10m 15s
Video
Slicing of a Sequence
20m 21s
Video
8
Control Statements
11 activities
If Statement
15m 33s
Video
If Else Statement
4m 9s
Video
if elif else statement
22m 49s
Video
Introduction to Loops
1m 28s
Video
While Loop
18m 57s
Video
For Loop
11m 27s
Video
else statement with loops
6m 32s
Video
Break Statement
10m
Video
Continue Statement
11m 20s
Video
Pass Statement
5m 25s
Video
Assert Statement
5m 32s
Video
9
String handling
31 activities
Introduction to Strings
45s
Video
Creating String
9m 37s
Video
Escape Characters
5m 59s
Video
Length of String
4m 51s
Video
String Indexing
14m 30s
Video
String concat and repeat
5m 18s
Video
Membership Operators with String
12m 54s
Video
String Reverser
Assignment
Vowel Counter
Assignment
Initials Generator
Assignment
Palindrome Checker
Assignment
Word Reverser in Sentence
Assignment
Password Validator
Assignment
Caesar Cipher Encoder
Assignment
Most Frequent Word
Assignment
String Compression
Assignment
DNA Sequence Analyzer
Assignment
A Python program to access each element of a string in forward and reverse orders using while loop.
Assignment
A Python program to access the characters of a string using for loop.
Assignment
A Python program to know whether a sub string exists in main string or not.
Assignment
A Python program to find the first occurrence of sub string in a given main string.
Assignment
A Python program to find the first occurrence of sub string in a given string using index() method.
Assignment
A Python program to display all positions of a sub string in a given main string.
Assignment
A program to display all positions of a sub string in a given main string – version 2.
Assignment
A Python program to accept and display a group of numbers.
Assignment
A Python program to know the type of character entered by the user.
Assignment
A Python program to sort a group of strings into alphabetical order.
Assignment
A Python program to search for the position of a string in a given group of strings.
Assignment
A Python program to find the length of a string without using len() function.
Assignment
A Python program to find the number of words in a string.
Assignment
A Python program to insert a sub string in a string in a particular position.
Assignment
10
function
55 activities
Introduction to Function
Video
Define a Function
Video
Function with Parameters
Video
Return Statement
Video
Return Multiple Value
Video
Types of Arguments
Video
Local and Global Variable
Video
Recursion
Video
A function that accepts two values and finds their sum.
Assignment
A Python program to find the sum of two numbers and return the result from the function.
Assignment
A function to test whether a number is even or odd.
Assignment
A Python program to calculate factorial values of numbers.
Assignment
A Python function to check if a given number is prime or not.
Assignment
A Python program that generates prime numbers with the help of a function to test prime or not.
Assignment
A Python program to understand how a function returns two values.
Assignment
A function that returns the results of addition, subtraction, multiplication and division.
Assignment
A Python program to see how to assign a function to a variable.
Assignment
A Python program to know how to define a function inside another function.
Assignment
A Python program to know how to pass a function as parameter to another function.
Assignment
A Python program to know how a function can return another function.
Assignment
A Python program to pass an integer to a function and modify it.
Assignment
A Python program to pass a list to a function and modify it.
Assignment
A Python program to create a new object inside the function does not modify outside object.
Assignment
A Python program to create a new object inside the function does not modify outside object.
Assignment
A Python program to understand the positional arguments of a function.
Assignment
A Python program to understand the keyword arguments of a function.
Assignment
A Python program to understand the use of default arguments in a function.
Assignment
A Python program to show variable length argument and its use.
Assignment
A Python program to understand keyword variable argument.
Assignment
A Python program to understand global and local variables.
Assignment
A Python program to access global variable inside a function and modify it.
Assignment
A Python program to get a copy of global variable into a function and work with it.
Assignment
A function to accept a group of numbers and find their total average.
Assignment
A function to display a group of strings.
Assignment
A Python program to calculate factorial values using recursion.
Assignment
A Python program to solve Towers of Hanoi problem.
Assignment
A Python program to create a lambda function that returns a square value of a given number.
Assignment
A lambda function to calculate the sum of two numbers.
Assignment
A lambda function to find the bigger number in two given numbers.
Assignment
A Python program using filter() to filter out even numbers from a list.
Assignment
A lambda that returns even numbers from a list.
Assignment
A Python program to find squares of elements in a list.
Assignment
A lambda function that returns squares of elements in a list.
Assignment
A Python program to find the products of elements of two different lists using lambda function.
Assignment
A lambda function to calculate products of elements of a list.
Assignment
A decorator to increase the value of a function by 2.
Assignment
A Python program to apply a decorator to a function using @ symbol.
Assignment
A Python program to create two decorators.
Assignment
A Python program to apply two decorators to the same function using @ symbol.
Assignment
A Python program to create a generator that returns a sequence of numbers from x to y.
Assignment
A generator that returns characters from A to C.
Assignment
A Python program to calculate the gross salary and net salary of an employee.
Assignment
A Python program that uses the functions of employee module and calculates the gross and net salaries of an employee.
Assignment
A Python program using the special __name__ variable.
Assignment
A Python program that import the previous Python program as a module.
Assignment
11
Certification Exam
3 activities
Python Core Certification Exam 18 Jan 2026
Quiz
Python Core Certification Exam 1 Feb 2026
Quiz
PY101: Introduction to Python Programming
4 students earned this certificate
Certificate
12
Object Oriented Programming
14 activities
Introduction to Object Oriented Programming
Video
First Class and Object
Video
Drag the words: First Class and Object
H5P
Using Class as Template for Objects
Video
Quiz: Using Class as Template for Objects
Quiz
Drag the words: Using Class as Template for Objects
H5P
Instance Method and Self Variable
Video
Quiz: Instance Method and Self Variable in Python
Quiz
Drag the words: Instance Method and Self Variable in Python
H5P
Constructor
Video
Getter setter
Video
Inner Class
Video
Two Class
Video
Magic Methods
Video
13
Function Part 2
9 activities
Function can be Assigned to a Variable
5m 11s
Video
Functions can be Passed as Argument
4m 15s
Video
Functions can Return Other Functions
6m 16s
Video
Functions can be Stored in Data Structures
6m 17s
Video
Functions can have Attributes
10m 51s
Video
Lambda Function
9m 3s
Video
Coding Challenge
Quiz
Lambda and Ternary Operator
Video
Function Decorators
Video
14
Date and Time
3 activities
Date and Time
Video
Epoch
Video
Get Current Time
Video
15
List in Python
9 activities
Introduction to List
Video
Create List in Python
Video
Create List Using Range Function in Python
Video
Access Items from List in Python
Video
Updating a List in Python
Video
Operations on list in Python
Video
Alias and Copy of a List in Python
Video
Nested Lists in Python
Video
List Comprehension in Python
Video
16
Tuple in Python
6 activities
Create a Tuple
6m 1s
Video
Access Items of a Tuple
Video
Operations on a Tuple
Video
Updating Tuples in Python
Video
Nested Tuple in Python
Video
Tuple in Loop and List Comprehension
Video
17
Dictionaries in Python
2 activities
Create a Dictionary in Python
Page
Operations on Dictionaries in Python
Page
Join this Course
This course requires a payment for entry
Cost: INR 1,499.00
This course includes
- 155 on-demand lessons
- 17 learning modules
- Certificate on completion
- Access on any device
- Lifetime access
Certificate
Certificate of Completion
PY101 Introduction to Python Programming
4 students have already gained this certificate
You will earn this certificate after completing this course.