Learn Python Programming - course is curated for Beginner to Master.
Every topic is covered in depth with practical examples.
100+ Challenges to make you expert in Problem Solving using Python
By the end of the course you will understand Python extremely well and will be able to build your own Python applications.
Resources are available for every lectures.
Answer Quiz at the end of major topics, to feel confident.
Do Projects using Tkinter, GUI Programming.
Use Laptop or PC to learn and practice Python.
Learn Python Programming - course is curated for Beginner to Master.
Every topic is covered in depth with practical examples.
100+ Challenges to make you expert in Problem Solving using Python
By the end of the course you will understand Python extremely well and will be able to build your own Python applications.
Resources are available for every lectures.
Answer Quiz at the end of major topics, to feel confident.
Do Projects using Tkinter, GUI Programming.
Use Laptop or PC to learn and practice Python.
IDLE is used for demonstrating the concepts and PyCharm is used for Developing Programs. You can use any IDE, of your choice.
Course Content:
Fundamental Concepts and Features of Python
Learn to use PyCharm, Jupyter Notebook and IDLE.
Explore Numeric DataTypes
Conditional and Loop Statements
Explore Advance Datatypes - List, Tuple, Set, Dictionary
Write Error-free Programs by Handling Exception
Multithreaded Programs
More and more about Functions
Object-Oriented Programming
File Handling and CSV Files
Database Programming using Sqlite
Modules
Data Structures
Date and Time
OS
Math
NumPy
GUI Programming using Tkinter
Do Projects in GUI Programming
You can always ask Questions in Q&A section. you can find Q&A section under each video lecture.
Every Lecture contains notes in Resources.
Lecture Contents :
How Variables are Created
What Information does a Variable Holds
How Names are given to Data (Variable Name)
Lecture Contents :
How Python is Dynamically Typed
How to Know the Type of Any Variable
Lecture Contents :
Rules to Assign Variable Names
Defines What Identifiers and Keywords are
Lecture Contents :
Introduction to the Data Type Available in Python
Lecture Contents :
Numeric Data Types
int and float DataTypes Discussed in Detail.
What is Mutable and Immutable DataType
Lecture Contents :
Continuation on Numeric Data Type ( Boolean , Complex)
Lecture Contents :
What is a Literal
How Literals are Assign to int , float , bool , complex and string Data Type
Lecture Contents :
Continuation of Literals ( Decimal , Binary , Octal , Hexa)
Discussion on int , float , complex
A Glance on TypeCasting and User Input
Lecture Contents :
How Base Conversions Works by Using bin( ) oct( ) and hex( )
Lecture Contents :
How One Data Type is Converted to Another Data Type
Types of Type Conversion :
1. Implicit
2. Explicit
Lecture Contents :
All About Arithmetic Operators ( + , - , * , ** , / , // , % )
Lecture Contents :
Expressions (Operator Precedence) and Associativity
Lecture Contents :
Coding Challenges for Student Using Expressions
Challenge 1 : To Find Area of a Rectangle
Challenge 2 : To Find Area of a Triangle
Challenge 3 : To Find Area of Trapezium
Challenge 4 : Displacement
Lecture Contents :
Coding Challenges for Students Using if , else , Relational Operator
Challenge 1 : Finding Area of a Triangle
Challenge 2 : Finding Area of a Trapezium
Challenge 3 : Calculating Displacement
Lecture Contents :
Coding Challenges for Students Using if , else
Challenge 1 : Converting kms to Miles
Challenge 2 : Finding Area of a Circle
Lecture Contents :
Coding Challenge for Student Using Expressions , if , else
Challenge : To Find Total Surface Area of Cuboid
Lecture Contents :
Coding Challenge for Students Using Expressions , if , else
Challenge : Finding Roots of Quadratic Equations
Lecture Contents :
Assignment Arithmetic Operators
+= , -= , *= , %= , \\= , **= , etc...
Lecture Contents :
A Detailed Explanation of Arithmetic Operators on all Datatypes
Lecture Contents :
Conditional Statements( if, else )
Relational Operators
Lecture Contents :
Expressions ( AND , OR , NOT )
Lecture Contents :
Coding Challenge for Student Using if , else , relational operator
Challenge 1 : To Find Difference Between Two Numbers
Challenge 2 : To Check if Number is Odd or Even
Challenge 3 : To Check for Age Eligibility , for Casting a Vote
Lecture Contents :
Coding Challenges for Students Using if else Condition
Challenge 1 : To Check if Marks of Subject are Within Range (0-100)
Challenge 2 : To Check if a Person is Male or Female
Challenge 3 : To Check if a Person is Eligible to Work
Lecture Contents :
Coding Challenges for Students Using if , else
Challenge 1 : To Check if a Student has Passed or Failed, by Taking Marks in 3 Subjects
Challenge 2 : To Check if a Person is Authorised for Admin Access
Challenge 3 : To Check if a Given Lower Case Character is a Vowel or Consonant
Lecture Contents :
Nested if , elif
Explains how elif is Useful Over Nested if
Lecture Contents :
Coding Challenge for Student , elif (Coding)
Challenge : To Calculate Discounted Amount
Lecture Contents :
Coding Challenge for Student Using elif
Challenge : To Display the Name of a Day by Taking Day Number
Lecture Contents :
Coding Challenge for Student Using elif
Challenge : To Check Whether a Year is Leap or Not
Lecture Contents :
Explanation on Relational Operator in Detail
Working of < , <= , > , >= , == , != with Numeric Data Type
Lecture Contents :
Logical Operators ( AND , OR , NOT )
Whether Logical Operator Works on Boolean Type
Short Circuit.
Lecture Contents :
Bitwise Operators
AND , OR , XOR , Complement >> , <<
Explanation on How to Use Bitwise Operator
Lecture Contents :
is , is not Explanation
Various Examples to check Working of is , is not
Lecture Contents :
Introduction to Loops
while loop , for loop
Explanation while loop
Lecture Contents :
Coding Challenge for Student Using while loop
Challenge : To Display Multiplication Table for a Given Number
Lecture Contents :
Student Coding Challenges Using while loop
Challenge 1 : Counting Number of Digits in a Number
Challenge 2 : To Find Sum of Digits in a Number
Challenge 3 : Reversing a Number
Challenge 4 : To Check if Number is Palindrome or Not
Lecture Contents :
Coding Challenge for Student Using while loop
Challenge 1 : To Find Sum of Given Number as Input
Challenge 2 : To Find Sum of Positive and Negative Number
Lecture Contents :
Coding Challenge for Students Using while loop
Challenge 1 : To Find Maximum Number From the Given Numbers
Challenge 2 : To Convert Decimal Number to Binary Number
Lecture Contents :
Coding Challenge for Student Using while loop
Challenge to Guess Numbers from 1 to 10
Lecture Contents :
Explanation About :
Infinite Loop
break statement
continue statement
pass statement
Lecture Contents :
else suite
Explains how else work's with while
Lecture Contents :
Introduction to for loop / for Each Loop
Working of for Loop
for Loop with Range Function
Lecture Contents :
Coding Challenges for Student Using for loop
Challenge 1 : To Display Multiplication Table for a Given Number
Challenge 2 : To Find the Factorial of a Given Number.
Lecture Contents :
Coding Challenges for Students
Challenge 1 : To Print n terms of AP series
Challenge 2 : To Print n terms of Fibonacci series
Lecture Contents :
Coding Challenges for Student Using for Loop
Challenge 1 : To Find the Factors of a Number
Challenge 2 : To Check if a Number is Prime or Not
Lecture Contents :
break with for loop
continue with for loop
pass with for loop
Lecture Contents :
Introduction to Nested Loop
How to Write Nested Loop
Lecture Contents :
Coding Challenge for Student Using Nested Loop
challenge : To Print Prime Numbers from 1 to 100
Lecture Contents :
Coding Challenge for Students
challenge : To Draw Patterns
Explain how Pattern can be Drawn Without Using Nested Loop
Lecture Contents :
What is Match Case
How Match Case Works
Lecture contents :
Basics of strings
How to write string
What it contains
How it looks in memory
len()
for loop
String literals
Lecture contents :
Concatenation
Repetition
Indexing
Slicing
in
not in
Lecture contents :
Continuation of in, not in Operator
Lecture contents :
Introduction to String Methods
What are Methods on Strings
How to know all Methods on Strings
What is the use of Help Method
Lecture contents :
How Strings are Stored
How to Call Methods
Methods : s.find , s.rfind , s.index , s.count
Lecture contents:
Continuation Methods :
s.ljust
s.rjust spacing
s.center
Lecture contents :
Will get to learn about Methods Related to the Cases of Strings
Lecture contents :
Continuation of Methods:
isupper( )
islower( )
istitle( )
isalnum( )
isspace( )
isascii( )
Lecture contents :
Continuation of Methods :
isidentifier
isprintable
isdecimal
isdigits
Difference Between Decimal and Digits
Lecture contents :
Continuation Methods :
s.startswith
s.endswith
s.removesuffix
s.removeprefix
s.partition
s.r partition
Lecture contents :
Continuation of String Methods :
s.replace
s.join
s.split
s.rsplit
s.splitlines
Lecture Contents :
How to sort jumble letters in a string using sorted( ) method.
Lecture Contents :
Display the Data within 25 Letters in a given Format
Lecture Contents :
Take two Password inputs from user and check if they are same or not.
Lecture Contents :
Taking input as credit card number and displaying the results in such a way that only last 4 digits of the credit card number is readable.
Lecture Contents :
Find user ID and Domain Name from Email Address
Lecture Contents :
What is Palindrome and how can we convert a string into Palindrome.
Lecture Contents :
Find Day, Month and Year from Date where Date is in String Format.
OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.
Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.
Find this site helpful? Tell a friend about us.
We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.
Your purchases help us maintain our catalog and keep our servers humming without ads.
Thank you for supporting OpenCourser.