Python Programming
Python is one of the hottest programming languages of 2020
With the emerging trend of Data science & machine learning. Python can surely help you grab a high paying programming job.
We have create a series of Python Tutorials and several practical examples
Learn Python
Table of Contents
DISCLOSURE: This post contains affiliate links, meaning when you click the links and make a purchase, we receive a commission.
Chapter 1: Introduction to Python
- Python – Keywords and Identifiers :
-
- In python keywords are the reserved words for special purposes. Identifiers are the names which we choose for custom variables, functions, or classes in a python program. Learn more important rules and facts about keywords and identifiers in python. Read More......
-
- Python Variables:
-
- In python, a variable is a like tag or reference that points to an object in the memory. Learn important points about variables in python, like creating variables and changing the value of a variable etc. Read More....
-
- Literals in Python:
-
- A Literal in python is a raw data or a constant value that can be assigned to variable. There are different types of literals in python like, Numeric Literals, String Literals and Bool Literals. Learn more about them. Read More....
-
Chapter 2: Conditional Expressions
- if-statement:
-
- Learn how to control the flow of code using if-statement . Read More......
-
- if...else statement:
-
- Learn to alter the flow of code in two directions based on conditions. Read More....
-
- if...else if...else statement:
-
- Learn how if, else if and else works in python and understand alter the flow of code in multiple directions based on various conditions. Read More....
-
- if...else in one line:
-
- Learn how to use the if-else in a single line, and it will give the same effect as the ternary operator. Read More....
-
Chapter 3: Loops in Python
- while-loop in python:
-
- A while loop in python executes a group of statements or a suite of statements multiple times, till a given condition is True. Read More......
-
- for-loop in python:
-
- Iterate over a group of statements multiple times using a for loop. But the number of times these statements will be executed by a for loop depends upon a sequence. Read More....
-
- break keyword and loops
-
- Learn how to use the break keyword in python to break the flow of loops abruptly. Read More....
-
- continue keyword and loops
-
- Calling the continue keyword inside the loop, will make the control jump to the starting of the while loop again. All the lines after the continue keyword will get skipped for that particular iteration. Read More....
-
Chapter 4: List Datatype
- List - Introduction
- Creating Lists
- Add or update elements in Lists
- Iterate / Loop over Lists
- Remove elements from Lists
- Search / Find elements in a List
- Sort a list by key or Value
- Merging / Joining Lists
- Counting elements in Lists
- Duplicates in Lists
- Convert Lists to other types