Learning Python Beginner Level
Learning Python Beginner Level
LEVEL
1. WHAT IS STRING?
Here print is a function which we can use to print our message on application window
Whenever we are using textual data we should always surround our text with textual data. In
python we can surround over text with single (‘’) or double (“”) quotes.
2. What is Variable?
Example:
age = 20
3. What is input?
In python there is a built in function called Input which is used to read to read value from the
terminal window.
+
*
-
/
// (shows the result in whole number)
% Modulo Operator. It returns the remainder of dividing the left hand operand by
right hand operand. It's used to get the remainder of a division problem
** power operator (10 **3 this menas 10 to the power of 3 )
Augmented assignment operator +=,-=,*=,/=
TYPES OF COMAPRISON OPERATOR
STATEMENTS IN PYTHON