Integers

Python Statements Overview and Comparison Operators

We are now crossing into a new plateau when it comes to programming. The last few posts were to lay the foundation of what out-of-the-box data types Python has and how you can work with them. We barely scratched what you can do with each Python data type. The previous posts just gave you an

Python Statements Overview and Comparison Operators Read More »

Python Integers and Floats

Python allows us to work with integers (type int) and floats (type float), two fundamental data types discussed in a previous blog post about Python Data Types. Python Integers and floats are numerical representations, with the main difference being a floating number has a decimal point, and an integer does not. The Python programming language

Python Integers and Floats Read More »