In the previous chapter, we learned how to get started with Python. We looked at downloading the latest version of Python for Windows, Mac, and Linux and then looked at working with IDLE to create our very first Python program.
Let us look at how to play with numbers in this chapter. We’ll look at how to store numbers in something called variables and about the different types of numbers you can work with in Python.
Numbers in Python
Numbers play a very important role in everything, so it’s no wonder that ...