Python Basics
Click on each tutorial to study it in detail.
Python Operators
Learning the operators is an excellent place to start to learn Python.
Python has seven types of operators that we can use to perform different operations.
Python Variables
A variable is a reserved memory area (memory address) to store value.
Learn to create, modify, delete variables.
Python Data Types
Data types specify the different sizes and values that can be stored in the variable. For example, Python stores numbers, strings, and a list of values using different data types.
Lear different types of Python data types
Python Casting
Learn Python Type Conversion and Type Casting. Convert variables declared in specific data types to the different data types.
Python Control Flow
Flow control is the order in which statements or blocks of code are executed at runtime based on a condition.
Learn Conditional statements, Iterative statements, and Transfer statements
Python Range()
Python range()
function generates the immutable sequence of numbers starting from the given start integer to the stop integer.
Python Input and Output
This guide on Python input and output lets you know how to get input from the user, files, and display output on the screen, console, or write it into the file.
Python Number
Learn to work with numerical data in Python. Learn numerical data types.
Also learn Math module, Decimal, and Fraction modules in detail.
Python Lists
Learn List type in detail. List methods and operations. Adding, modifying, and deleting elements in the list.
Also, learn how to iterate the list and access the elements in the list in detail. Also, learn nested lists and List comprehension.
Python Tuples
Learn how to use a tuple data structure in Python. Also, learn how to create, access, and modify a tuple in Python and all other operations we can perform on a tuple
Python Sets
In Python, a Set is an unordered collection of data items that are unique.
Learn Set data structure in general, different ways of creating them, and adding, updating, and removing the Set items. We will also learn the different set operations.
Python Dictionaries
Dictionaries are unordered collections of unique values stored in (Key-Value) pairs.
Learn how to create, access, and modify a dict
in Python and all other operations we can perform on a dictionary.
Python Functions
In Python, the function is a block of code defined with a name. We use functions whenever we need to perform the same task multiple times without writing the same code again. It can take arguments and returns the value.
Python Modules
In Python, modules refer to the Python file, which contains Python code like Python statements, classes, functions, variables, etc. A file with Python code is defined with extension.py
Python Exercise for Beginners
This Python essential exercise is to help Python beginners to learn necessary Python skills quickly.
Practice Python Basic Concepts such as Loops, Control structure, List, Strings, input-output, and built-in functions.
Python Quiz For Beginners
This Quiz is for beginners who are new to Python Programming. This quiz provides Multiple Choice Questions to get familiar with Python.
The quiz focuses on testing your basic skills on Python essential functions, string, operators, functions, set, and lists questions.
All Python Basics Tutorials: -