Dictionaries in python
Dictionaries in python behave pretty much as dictionaries in real life. Whenever we want to know something about some word or value we...
Lists in python
A list is a data structure in python which act as a collection of elements. The special thing about python list is that they can contain...
Strings in python
Strings are nothing but a sequence of characters, in python we don't have any datatype for character, we simply have strings and a...
Loops: for loop in python
For loop is similar to while but for loop takes care of the condition also i.e unlike while loop we need not take care of the condition...
The Caesar Cipher: A widely used encryption technique
Hey guys! In this post I am gonna give you a detailed explanation on Caesar Cipher and I will help you develop a python code for the...
Loops: while loop in python
When we write a program, we might need to use a piece of code again and again and every time we need that piece of code we need not write...
Control flow - if else
Whenever we write useful programs we need to control the flow of execution, and one way to do the same is to check some condition and...
Python values, variables and datatypes
Value: A value is a fundamental piece of data. It can be a character, word, numbers etc. Each value in python is categorized with some...
Operators and expressions in python
Hey guys, in this tutorial we are going to learn about various operators and expressions in python, how they are used to perform certain...
Input/Output in python
Input: Taking input in python is very simple, we use built-in input() function to take input from the user. We can either specify the...