Python 101 : A Powerful Language
Python is most popular language of this century.Python is buzzing and most demanded language of 21st century. You might heard a lot about that and seems lot of training videos and...
Loops in Python
Loops in python is the idea of controlled repetition.Loops in python is used for performing some task for repeatedly. So, in the loop statements or the block of codes are executing...
Concatenation, Comments, Creating Variables
Concatenation :+ symbol is used for the concatenation or join 2 strings and it’s also used as the mathematical operations.+ symbol is concatenate only strings. its not concatenate numbers and strings.it will...
Basic DataTypes
Every Variables in Python has a Datatype. In Python you do not need to declare any datatypes, you just write the variable and its value. Python automatically decide the types...
Common Functions
print (): If you want to display something or you want to print your statements that time you can use print ().type():It is used for find the datatype of...