Python Part1: Introduction, Install on windows, Scalar Types and Relational Operators
Introduction to python
- Open source programming language developed in late 1980’s.
- Strongly typed language in the sense that every object in the language has a definite type.
- At the same time, it is dynamically typed means no type checking prior to running it.
- General purpose language.
- There are some areas where it's less suitable than others, for example, in extremely time sensitive or memory constrained environments.
Install python on windows
Scalar types
Relational operators
- == value equality
- != value inequality
- < less-than
- > greater-than
- <= less-than or equal to
- >= greater-than or equal to
See Also
No comments:
Post a Comment