Mastering Core Python: A Complete Course Syllabus for Beginners

Introduction to Python 

How Python Work 

Python Virtual Machine 

How to Install Python in Windows 11

How to Install Python and PyCharm 

How to run Python Program using Command Line Window 

How to run Python Program using IDLE 

How to run Python Program using Notepad 

How to Run Python Program using PyCharm 

How to Run Python Program using Visual Studio Code 

Identifier in Python 

Reserved words in Python 

Constant in Python 

Variable in Python 

Data Type in Python 

Built in Data Types in Python 

Declaring and Initializing Variables in Python 

Arithmetic Operators in Python 

Relational or Comparison Operator in Python 

Logical Operators in Python 

Assignment Operators in Python 

Bitwise Operator in Python 

Membership Operators in Python 

Identity Operators in Python 

Operator Precedence and Associativity in Python 

Implicit and Explicit Type Conversion in Python 

Output Statement or Print Function in Python 

Getting input from user or Input Statement or input Function in Python 

Escape Sequence in Python 

If Statement in Python 

Nested if Statement in Python 

if Statement with Logical Operator in Python 

Indentation in Python 

if else Statement in Python 

Nested if else Statement in Python 

if elif and if elif else Statement in Python 

While Loop and Nested while Loop in Python 

range Function in Python 

for loop and Nested for Loop in Python 

Break Statement and Continue Statement in Python 

Pass Statement in Python 

Array in Python 

One Dimensional Array using Array Module in Python 

Accessing Array using for Loop Array Module in Python 

Accessing Array using while Loop Array Module in Python 

append Method in Python 

Getting Array input from user using for Loop in Python 

Getting Array Input from user using while Loop in Python 

insert Method in Python 

pop Method in Python 

remove Method in Python 

index Method in Python 

reverse Method in Python 

extend Method in Python 

Slicing on Arrays in Python 

How to install and Uninstall Python Packages 

How to install numpy in Python 

One Dimensional Numpy Array using array Function 

Accessing One Dimensional Numpy Array using for Loop in Python 

Accessing One Dimensional Numpy Array using while Loop in Python 

Numpy One Dimensional Array using linspace Function in Python 

Numpy One Dimensional Array using logspace Function in Python 

Numpy One Dimensional Array using arange Function in Python 

Numpy One Dimensional Array using zeros Function in Python 

Numpy One Dimensional Array using ones Function in Python 

Math Operations on Arrays using Numpy in Python 

Comparing Numpy Arrays in Python 

any and all Functions in Python 

where Function in Python 

nonzero Function in Python 

Aliasing Array in Python 

view Method and copy Method in Python 

Getting input from user in Numpy One Dimensional Array using for Loop Python 

Getting input from user in Numpy One Dimensional Array using while Loop Python 

Two Dimensional Numpy Array using array Function in Python 

Accessing Numpy Two Dimensional Array using for Loop in Python 

Accessing Numpy Two Dimensional Array using while Loop in Python 

Numpy Two Dimensional Array using zeros Function in Python 

Numpy Two Dimensional Array using ones Function in Python 

reshape Function and flatten Method in Python 

Input from user in numpy Two Dimensional Array using for Loop in Python 

Input from User in Numpy Two Dimensional Array using while Loop in Python 

Slicing on Two Dimensional Array in Python 

Attributes of Numpy Array in Python 

String in Python 

How to Find String Length in Python 

Access String using Loop in Python 

Difference between Mutable and Immutable Object in Python 

Immutable String in Python 

Repetition Operator in Python 

Concatenation Operator in Python 

Comparing String in Python 

C Style String Formatting in Python 

format Method in Python 

f String or Formatted String Literal in Python 

upper lower swapcase and title String Functions in Python 

isupper islower and istitle String Functions in Python 

isdigit isalpha and isalnum String Functions in Python 

isspace String Function in Python 

lstrip rstrip and strip String Function in Python 

replace split and join String Functions in Python 

startswith and endswith String Functions in Python 

Function and How Function Work in Python 

Return Single and Multiple Value and Variable from Function in Python 

Nested Function in Python 

Passing a Function as Parameter in Python 

Function returning another Function in Python 

Actual Argument and Formal Argument in Python 

Positional Argument in Python 

Keyword Argument in Python 

Default Argument in Python 

Variable Length Argument in Python 

Keyword Variable Length Argument in Python 

Anonymous Function or Lambda Expression in Python 

Nested Lambda Function in Python 

Passing Lambda Function to another Function in Python 

Returning Lambda Function from a Function in Python 

Immediately Invoked Function Expression in Python 

Local Variable in Python 

Global Variable in Python 

global Keyword in Python 

globals Function in Python 

Recursion in Python 

Pass or Call by Object Reference in Python 

Function Decorator in Python 

Passing Array to Function in Python 

Returning Array from Function in Python 

Passing and Returning Numpy Array in Python 

Numpy Built in Math Functions in Python 

Math Functions in Python 

List in Python 

Accessing List using for Loop in Python 

Accessing List using while Loop in Python 

append Method in Python 

Getting List input from user in Python 

insert Method in Python 

pop Method in Python 

remove Method in Python 

index Method in Python 

reverse Method in Python 

extend Method in Python 

count Method in Python 

sort Method in Python 

clear Method in Python 

Slicing on List in Python 

List Concatenation in Python 

Repetition of List in Python 

Aliasing List in Python 

Copying and Cloning List in Python 

Nested List in Python 

Accessing Nested List using for Loop in Python 

Accessing Nested List using while Loop in Python 

Passing List to Function in Python 

Returning List from Function in Python 

list Function in Python 

Slicing Nested List in Python 

filter Function in Python 

map Function in Python 

reduce Function in Python 

Generator Function Yield Statement and Next Function in Python 

Tuple in Python 

Access Tuple using for Loop in Python 

Access Tuple using while Loop in Python 

Slicing Tuple in Python 

Tuple Concatenation in Python 

Modifying Tuple Element in Python 

Deleting Tuple in Python 

Getting Tuple input from user in Python 

Repetition of Tuple in Python 

Aliasing Tuple in Python 

How to Copy Tuple Elements in Python 

Nested Tuple in Python 

Accessing Nested Tuple using for Loop in Python 

Accessing Nested Tuple using while Loop in Python 

Slicing Nested Tuple in Python 

Passing Tuple to Function in Python 

Returning Tuple from Function in Python 

List of Tuples in Python 

Tuple of Lists in Python 

Set Type in Python 

Adding Single and Multiple Set Elements in Python 

Deleting Set Element in Python 

Accessing Set Elements using for Loop in Python 

Getting Set input from User in Python 

Copying Set Element in Python 

Clearing Set All Elements in Python 

Some Important Set Methods in Python 

Passing Set to Function in Python 

Returning Set from Function in Python 

Dictionary in Python 

Modifying Dictionary in Python 

Adding Dictionary Item in Python 

Deleting Dictionary Item in Python 

How to Test Dictionary Key exist or not in Python 

How to Remove All Elements from Dictionary in Python 

How to Copy Dictionary in Python 

Create Dictionary using formkeys Method in Python 

get Method in Python 

items Method in Python 

keys Method in Python 

values Method in Python 

update Method in Python 

pop Method in Python 

popitem Method in Python 

setdefault Method in Python 

Accessing Dictionary using for Loop in Python 

Getting Dictionary input from User in Python 

Nested Dictionary in Python 

Access Nested Dictionary using for Loop in Python 

Nested Dictionary in Python 

Access Nested Dictionary using for Loop in Python 

Passing Dictionary to Function in Python 

Returning Dictionary from Function in Python 

List Comprehension in Python 

Nested List Comprehension in Python 

Set Comprehension in Python 

Nested Set Comprehension in Python 

Dictionary Comprehension in Python 

How to decide when and why use Array List Tuple Set or Dictionary in Python 

id Function type Function and getsizeof Function in Python 

Some Important Function in Python 

len Function in Python 

min and max Function in Python 

sorted Function in Python 

Membership Operator with String List Tuple Set and Dictionary in Python 

What Next After Completing Core Python

Comments

Popular posts from this blog

Mastering HTML: A Complete Course Syllabus from Beginner to Advance

Mastering CSS and CSS 3: A Complete Course Syllabus from Beginner to Advance

Mastering Bootstrap: A Complete Course Syllabus from Beginner to Advance