Hosted by Dailymotion. For legal issues report at the Copyright Center, report us on DMC, or use the Instant Removal tool.
2. Python Data Types
H
Hacker Experts
8 Views • Jul 01, 2024
Description
Built-in Data Types
In programming, data type is an important concept.
Variables can store data of different types, and different types can do different things.
Python has the following data types built-in by default, in these categories:
Text Type: str
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
None Type: NoneType
Getting the Data Type
You can get the data type of any object by using the type() function:
ExampleGet your own Python Server
Print the data type of the variable x:
x = 5
print(type(x))
Setting the Data Type
In Python, the data type is set when you assign a value to a variable:
Example Data Type Try it
x = "Hello World" str
x = 20 int
x = 20.5 float
x = 1j complex
x = ["apple", "banana", "cherry"] list
x = ("apple", "banana", "cherry") tuple
x = range(6) range
x = {"name" : "John", "age" : 36} dict
x = {"apple", "banana", "cherry"} set
x = frozenset({"apple", "banana", "cherry"}) frozenset
x = True bool
x = b"Hello" bytes
x = bytearray(5) bytearray
x = memoryview(bytes(5)) memoryview
x = None NoneType
ADVERTISEMENT
Setting the Specific Data Type
If you want to specify the data type, you can use the following constructor functions:
Example Data Type Try it
x = str("Hello World") str
x = int(20) int
x = float(20.5) float
x = complex(1j) complex
x = list(("apple", "banana", "cherry")) list
x = tuple(("apple", "banana", "cherry")) tuple
x = range(6) range
x = dict(name="John", age=36) dict
x = set(("apple", "banana", "cherry")) set
x = frozenset(("apple", "banana", "cherry")) frozenset
x = bool(5) bool
x = bytes(5) bytes
x = bytearray(5) bytearray
x = memoryview(bytes(5)) memoryview
In programming, data type is an important concept.
Variables can store data of different types, and different types can do different things.
Python has the following data types built-in by default, in these categories:
Text Type: str
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
None Type: NoneType
Getting the Data Type
You can get the data type of any object by using the type() function:
ExampleGet your own Python Server
Print the data type of the variable x:
x = 5
print(type(x))
Setting the Data Type
In Python, the data type is set when you assign a value to a variable:
Example Data Type Try it
x = "Hello World" str
x = 20 int
x = 20.5 float
x = 1j complex
x = ["apple", "banana", "cherry"] list
x = ("apple", "banana", "cherry") tuple
x = range(6) range
x = {"name" : "John", "age" : 36} dict
x = {"apple", "banana", "cherry"} set
x = frozenset({"apple", "banana", "cherry"}) frozenset
x = True bool
x = b"Hello" bytes
x = bytearray(5) bytearray
x = memoryview(bytes(5)) memoryview
x = None NoneType
ADVERTISEMENT
Setting the Specific Data Type
If you want to specify the data type, you can use the following constructor functions:
Example Data Type Try it
x = str("Hello World") str
x = int(20) int
x = float(20.5) float
x = complex(1j) complex
x = list(("apple", "banana", "cherry")) list
x = tuple(("apple", "banana", "cherry")) tuple
x = range(6) range
x = dict(name="John", age=36) dict
x = set(("apple", "banana", "cherry")) set
x = frozenset(("apple", "banana", "cherry")) frozenset
x = bool(5) bool
x = bytes(5) bytes
x = bytearray(5) bytearray
x = memoryview(bytes(5)) memoryview
Keywords & Tags
##learnpython
#python tutorial
#python tutorial for beginners
#learn python
##learnpythonprogramming
##learnpythonfree
#learningpython in english
##learnpythonfull
#learning python
#full python course
#python in 10 hour
#free python learning
#learn to code
#programming with python
#learn best python
#python tutorial for beginners in hindi
#python tutorial freecodecamp
#python tutorial playlist
Related Videos
01:06
#0 Python Tutorial for Beginners || python programming language in English
Top news
14:35
#10 Python Tutorial for Beginners //Data Types in Python
Top news
13:01
Learn Python with easy steps - Full Course for Beginners | Python Tutorial 1
Yusuf
02:19
Learn Python Programming: The Ultimate Course for Beginners
Vatan Kumar
03:03
Learn Illustrator Tutorials for Beginners in Hindi | illustrator tutorials | Illustrator Tips Hindi |Technical Learning
Technical Learning
13:32
Python Tutorial for Beginners 1 - Getting Started and Installing Python (For Absolute Beginners)
programming languages