Online Inter College
Blog
Articles
Guides
Courses
Tools
Explore
Live
Search
Sign In
Get Started
← Question Bank
Python Essentials — Interview & Exam Set
Data Types
Beginner
MCQ
What is the output of: print(type([]))?
Choose the correct answer:
A
<class 'tuple'>
B
<class 'list'>
C
<class 'dict'>
D
<class 'set'>
Click an option to reveal the answer.
Related Questions — Data Types
Python lists are mutable, but tuples are immutable.
True / False
·
Beginner
→