While Loop in Python
While Loop in Python While loop is one of the two major loops available in Python which are for loop
Read moreWhile Loop in Python While loop is one of the two major loops available in Python which are for loop
Read moreIf Else in Python If else in Python are a set of control statements that literally control flow of code.
Read moreDictionary in Python Dictionary in Python is a containers of key-value pairs. Each key-value pair is an element of the
Read morePython Sets Python sets are containers of different or same type of elements. These elements are unordered which implies that
Read moreTuples in Python Tuples in Python are a kind of containers which stores elements of same or different types. These
Read moreLists in Python Lists in Python are a collection of elements of different data types. Elements of a list are
Read moreStrings in Python Strings in Python are collection of words enclosed in single quotation marks or double quotation marks. Python
Read moreBoolean Data Type in Python Boolean data type in Python is one of the primitive data types in Python which
Read morePython Type Casting Python type casting is the process in which data type of one variable is changed to another
Read morePython Numbers Python numbers are different numeric values used in mathematical calculations. They are immutable data types because changing the
Read more