#What are the standard data types in Python?
Python standard data types are:
Number (number)
String (string)
List ( List)
Tuple (Tuple)
Set (Set)
Dictionary (Dictionary)
Among the six standard data types of Python3 :
Immutable data (3 items): Number (number), String (string), Tuple (tuple);
Variable data (3 items): List (List), Dictionary (Dictionary), Set (Collection).
Related recommendations: "Python Tutorial"
The above is the detailed content of What are the standard data types of Python?. For more information, please follow other related articles on the PHP Chinese website!