-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtuples.py
48 lines (28 loc) · 770 Bytes
/
tuples.py
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
47
48
#####
# TUPLES
#####
# Tuples are immutable, so we can't modify them.
# Elements of lists are inside ( )
# Example with list on why we need Tuples:
list_1 = ['History', 'Math', 'Physics', 'CompSci']
list_2 = list_1 # We are inizializing list_2 pointer to list_1
print(list_1)
print(list_2)
# So if we change list_1 we are also changing list_2
list_1[0] = 'Art'
print(list_1)
print(list_2)
print('\n')
# Immutable Tuples:
tuple_1 = ('History', 'Math', 'Physics', 'CompSci')
tuple_2 = tuple_1
print(tuple_1)
print(tuple_2)
# tuple_1[0] = 'Art' # This will give an error!
# print(tuple_1)
# print(tuple_2)
print('\n')
# Empty Tuple (2 methods)
empty_tuple = tuple()
empty_tuple = ()
# --------------------> <-------------------- #