Python Files
File Handling is an important aspect of the Python Programming language as it is
used in web applications. We can
Modules in Python
A module in a Python programming language is an object having arbitrarily named
attributes which you can bind and reference.
Python Scopes
In Python Programming language variables that can only reach the area in which
they all are defined are known by
Argument in Python
Argument
The information in python can be passed into functions in the form of Arguments.
Arguments are always specified after
Functions in Python
A function is known as the block of code which only gets executed and run when
it is called. Basically,
Python Loops
In Python Programming, Python Loops are used for iterating a sequence (which is
either a list, a dictionary, a tuple,
Statements in Python
In Python Programming language there are several Statements and each statement
has a different role. Python Programming Language is not
Escape Sequence and Escape Characters
What is an Escape Sequence?
In Python, escape sequences are indicated by a backslash ( \ ). The most
important one may be
Python Variables and Data Types
A Variable is a named location that is used to store data in memory. Variables
are like containers that store
Making Simple Calculator
After understanding the use of input and print statements, next, we are going to
learn about making a simple calculator.