Home > Article > Backend Development > What data type does python not support?
Which data type does python not support?
Python does not support the char data type.
Python does not have char or byte types to store single characters or 8-bit integers. You can use strings of length 1 to represent characters or 8-bit integers.
There are six standard data types in Python3:
Number (number)
String (string)
List (List)
Tuple (Tuple)
Set (Set)
Dictionary (Dictionary)
Six standard data types of Python3 Medium:
Immutable data (3 items): Number (number), String (string), Tuple (tuple);
Variable data (3 items): List, Dictionary, Set.
Related recommendations: "Python Tutorial"
The above is the detailed content of What data type does python not support?. For more information, please follow other related articles on the PHP Chinese website!