Source: thenewstack.io

Python for Beginners: Data Types
So far, your adventures with Python have been all about creating things. There was a goal, a tiny app you could use to learn the ins and outs of basic Python programming.

Without data types at play, you could set a variable, but Python wouldn’t know what to do with it.

In Python, numeric data types can be integer, floating number, or complex numbers.

At the Python console, type the following: dict = { "name": "Jack Wallen", "client": "The New Stack" "subject": "Python"

Related Articles