0% found this document useful (0 votes)
5 views1 page

Python Data Types Explained

Uploaded by

makanavi9
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Python Data Types Explained

Uploaded by

makanavi9
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Python data types :

Data Typesssssssssssss Description

int 10, -5 Integer (whole numbers)


float 3.14, -0.5 Decimal numbers
str "hello" String (text)
bool True, False Boolean (True/False)
list [1, 2, 3] Ordered, changeable collection
tuple (1, 2) Ordered, unchangeable collection
dict {"a": 1} Key-value pairs (dictionary)
set {1, 2, 3} Unordered collection of unique items

You might also like