Python List
List in python is used to store the sequence of various type of data. In python a list can be writt…
List in python is used to store the sequence of various type of data. In python a list can be writt…
The for loop execute a sequence of statement multiple times. The for loop is also called as a per-t…
In while loop, the condition is evaluated first and if the condition is true then the statements in…
The loop statement allows us to execute a statement multiple times.Instead of writing the same code…
Decision making statement contain conditions that are evaluated by the program. If the condition is…
If we want to perform calculations and need to get numbers from the user, the input function produc…
The print function enables a python program to display textual information to user. In python the i…
Operators are symbols that tell the compiler to perform specific mathematical or logical manipulati…
In programming language Data Type is an important concept. Python has built in data types. Variable…
Variables are created when we assign a value to it. Based on the data type of a variable, the inter…
Commands are used to explain a line in a program. In python # symbol is used to write a command lin…