Showing posts with the label Python Tutorial

Python List

List in python is used to store the sequence of various type of data. In python a list can be writt…

Python For Loop

The for loop execute a sequence of statement multiple times. The for loop is also called as a per-t…

Python while Loop

In while loop, the condition is evaluated first and if the condition is true then the statements in…

Python Loops - SVRR TECH

The loop statement allows us to execute a statement multiple times.Instead of writing the same code…

Decision Making in Python - SVRR TECH

Decision making statement contain conditions that are evaluated by the program. If the condition is…

Python Program To Add Two Numbers - SVRR TECH

If we want to perform calculations and need to get numbers from the user, the input function produc…

Python input Function - SVRR TECH

The print function enables a python program to display textual information to user. In python the i…

Python Operators - SVRR TECH

Operators are symbols that tell the compiler to perform specific mathematical or logical manipulati…

Python Data Types - SVRR TECH

In programming language Data Type is an important concept. Python has built in data types. Variable…

Python Variables - SVRR TECH

Variables are created when we assign a value to it. Based on the data type of a variable, the inter…

Python Comments - SVRR TECH

Commands are used to explain a line in a program. In python # symbol is used to write a command lin…

Load More That is All