Introduction
Python language is a powerful general purpose high-level.Python Language developed by Guido Van Rossum in 1991.
Learn NowData Types
Data Types which is used in the program. Any literal that includes only numeric characters (0 to 9) creates.
Learn NowPython Variables
Variable is a name of storage space which is used to store data.here is no need to declare a data type variable name in python.
Learn NowUser Input
A python user input is a predefined function in python library which is used to take user input in Python.
Learn NowComments
A comment can be used to explain the source code to make to the readable python code.
Learn NowKeywords
Keywords are predefined reserved words used in python programming that have special meanings.
Learn NowOperators
Operator is a special symbol it can be used to perform logical or mathematical operations performed on data or variables.
Learn NowIf-Else Statement
A conditional statement can be using decision making control system. It can be used condition are satisfied or not
Learn NowPython All Loops
A loop in Python is a control flow statement python primarily supports two types of loops for loops and while loops.
Learn NowJump Statement
A jump statement in python is a control flow statement that allows break, continue and return the program.
Learn NowPython List
List is a collection of data of different data type. It is used to store list of values. A list is created by putting list.
Learn NowPython Tuple
A tuple is an immutable means tuple items can not be change. Tuple can store elements of different data types.
Learn NowPython String
A python string is a collection of characters. It is created using single quotes or double quotesa and tripal quotes.
Learn Now