-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5 - data-types.py
More file actions
46 lines (44 loc) · 1.2 KB
/
5 - data-types.py
File metadata and controls
46 lines (44 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Data types
"""
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
"""
# Setting the Data Types
"""
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
"""
# Setting the specific data types
"""
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
"""