Numbers / Integers
Numbers are the foundation of every programming language. In this module, we will learn how to use numbers in Python.
Integers (int)
positive_int = 2
negative_int = -2
zero = 0Boolean (bool)
is_raining = True
is_cloudy = FalseFloat (float)
References
Last updated