Type data di phyton

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


Contoh penulisan spesifik type data


x = str("Hello World")            
str
= Tulisan





x = int(20)
int
= angka
x = float(20.5)
float
=
x = complex(1j)
complex
=gabungan
x = list(("apple", "banana", "cherry"))
list
=array dapat dirubah
x = tuple(("apple", "banana", "cherry"))
tuple
=array tidak dapat dirubah
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