Explain me what are the built-in types available in python?



Explain me what are the built-in types available in python?..

Answer / Bhasker Sah

Python has several built-in data types, including:
1. Numbers: `int`, `float`, `complex`
2. Sequences: `str`, `list`, `tuple`, `range`
3. Mappings: `dict` (dictionary)
4. Sets and frozensets: `set`, `frozenset`
5. Booleans: `True`, `False`

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

Define the usage of split?

1 Answers  


Explain about assert statement?

1 Answers  


What do you understand by python modules?

1 Answers  


How do you exit a python script?

1 Answers  


Write a program to find the duplicates in a list?

1 Answers  


Explain about the use of python for web programming?

1 Answers  


What are object methods?

1 Answers  


Write program to find the common elements from two sets?

1 Answers  


Name some of the features of python?

1 Answers  


What is a singleton design pattern?

1 Answers  


What is type conversion in python?

1 Answers  


What is object () in python?

1 Answers  


Categories