Tag: common built-in data types in Python
What are the common built-in data types in Python?
The common built-in data types in Python are: String A sequence of characters in called a string. They are declared within single or double-quotes. E.G., ‘Sana’, ‘she is going to the market’, etc. Set Sets are a collection of unique items that are not in order. e.g. {7, 6, 8}. Dictionary A dictionary stores values…
Read MoreWhat are the common built-in data types in Python?
The common built-in data types in python are: Numbers They include integers, floating-point numbers, and complex numbers. e.g., 1, 2.4, 3 + 4j List An ordered sequences of items is called a list. The elements of a list belong to different data types. Eg. [5, ‘player’, 4.7]. Tuple It is also an ordered sequence of…
Read MoreFeatured Articles
-

Zero to Python Hero – Part 5/10: Essential Data Structures in Python: Lists, Tuples, Sets & Dictionaries
-

Top 5 Skills Every Engineer Should Learn in 2026
-

Zero to Python Hero - Part 4/10 : Control Flow: If, Loops & More (with code examples)
-

Zero to Python Hero - Part 3/10 : Understanding Type Casting, Operators, User Input and String formatting (with Code Examples)
-

Dynamic Programming in Reinforcement Learning: Policy and Value Iteration
Latest Articles
-

Zero to Python Hero – Part 6/10: Functions and Modules in Python
-

Zero to Python Hero – Part 5/10: Essential Data Structures in Python: Lists, Tuples, Sets & Dictionaries
-

Top 5 Skills Every Engineer Should Learn in 2026
-

Zero to Python Hero - Part 4/10 : Control Flow: If, Loops & More (with code examples)
-

Zero to Python Hero - Part 3/10 : Understanding Type Casting, Operators, User Input and String formatting (with Code Examples)
-

Zero to Python Hero - Part 2/10 : Understanding Python Variables, Data Types (with Code Examples)

