Basic Types int(float(str(‘2.3’))

--Originally published at codemathblog.wordpress.com

meme

What is basic type?

Is the most common kind of data on a Code, in this case, a python one.

The basic is an integrer and it is represented as int

An integrer is a number without decimals

integrer

Then we have a string that is represented as str

Is text, just that

str

A float that is represent with it’s same name

It’s a number that can contain decimals.

float

Hope it was clear as water :p Have fun with your code.