Functions
Suppose you have a set of few lines of code which is used and executed at multiple places. Instead of…
Suppose you have a set of few lines of code which is used and executed at multiple places. Instead of…
Python Loops Loops are used when same task needs to be executed multiple number of times. Example, printing mathematical table…
Python conditions Conditional execution is often required in an application as some actions need to be performed only when a…
Printing messages and execution results on the screen makes an application more informative and user friendly. Further, it makes the…
Reading User Input Taking input from user is a vital part of any application as it makes the application more…
Data types signify the type of data that python can deal with or different types of data that python variables…
Python Dictionary A dictionary in python is a data structure which consists of key-value pairs. Each key is associated with…
A python tuple is a data structure which can hold similar or different item types. It is similar to a…
First Python Program In this section, you will be writing a simple python program for printing a message as the…