Python History: Guido Van Rossum
Python History: Guido Van Rossum
4) Cross-platform Language
Python can run equally on different platforms such as Windows, Linux, Unix and
Macintosh etc. So, we can say that Python is a portable language.
Google
Facebook
Youtube
Dropbox
Pintrest
BBC
NASA
AT&T
New York Times
Python Supports Different paradigms
Immutable mutable
+ To perform addition
- To perform subtraction
* To perform multiplication
/ To perform division
Operator Description
< Less than
> Greater than
<= Less than or equal to
>= Greater than or equal to
== Equal to
!= Not equal to
<> Not equal to(similar to !=)
Assignment Operators
Operator Description
= Assignment
Operator Description
and Logical AND(When both conditions are true output will be true)
Operator Description
is not Returns true if identity of two operands are not same, else false.
Membership Operators
Operator Description