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

What data type does python not support?

藏色散人
Release: 2019-08-01 16:10:33
Original
9794 people have browsed it

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template