Home  >  Article  >  Backend Development  >  What data type does python not support?

What data type does python not support?

藏色散人
藏色散人Original
2019-06-28 11:20:109704browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn