You are on page 1of 1

PRINT STATEMENT

1. Print statement is used to output the text typed in single inverted commas or double
inverted commas.
2. It does not make any difference If we use single inverted commas or double inverted
commas.

Syntax >>> print(‘’) or >>> print(“”)

SIMPLE MATHEMATICAL OPERATIONS

1. Python has capability to do calculations directly


2. For addition +, subtraction - , multiplication *, division /
3. For exponential functional **. For quotient // and for remainder %
Example >>> 2 +2

FLOATS

1. Floats are used in python to represent the numbers which are not remainders.
2. They represent numbers with decimals like 0.5

You might also like