Python Introduction
Python Basics
Python Introduction
Python Installation
Overview of Jupyter IDE
Identifiers & Reserved Keywords
Python Variables
Python Numbers
Python Operators
Python Operators and Arithmetic Operators
Comparison and Logical Operators
Assignment and Bitwise Operators
Identity and Membership Operators
Python Flow Control
if else if else statement
While Loop Statement
Python For Loop
Break and Continue Statement
Python Data Types
Python Strings
Python Strings Methods
Python Lists
Python Tuples
Python Dictionary
Python Functions
Introduction to Python Functions
Function Arguments
Recursion Function
Lambda/Anonymous Function
Python - Modules
Python Files
Python - Files I/O
Python - Exceptions Handling
Python - Debugging
What is Python?
Python is a high-level, interactive, interpreted and object-oriented programming language.
It was created by Guido van Rossum, and released in 1991.
What is Scope of Python?
Python in used to create:
How easy to learn Python?
Python Syntax compared to other programming languages
Example 1: Hello World Program: Java vs Python
The same program in Python can be coded as below:
# Sample Code print("Hello World") Output: Hello World
Example 2: Swap the 2 numbers : C vs Python
The same program in Python can be coded as below:
# Sample Code a, b = 6, 13 a, b = b, a print(a, b) Output: 13 6
Example 3: Count total number of times “python” word is displayed: VB Script vs Python
The same program in Python can be coded as below:
# Sample Code str = "Welcome to Python Tutorials. Python is a general purpose high level
programming language.We will study about features of Python, use of Python,
advantages of Python and disadvantages of Python.Thank you" print(str.count("Python") Output: 6