0 votes
in Python by
What are the built-in types available in Python?

2 Answers

0 votes
by
The built-in types in Python are as follows:

Integer

Complex numbers

Floating-point numbers

Strings

Built-in functions
0 votes
by

Immutable built-in datatypes of Python

  1. Numbers
  2. Strings
  3. Tuples

Mutable built-in datatypes of Python

  1. List
  2. Dictionaries
  3. Sets
...