Learn practical skills, build real-world projects, and advance your career
##### Tuple #####
tup = 4,5,6
tup
(4, 5, 6)
nested_tup = (4,5,6),(7,8)
nested_tup
((4, 5, 6), (7, 8))
nested_tup[0][2]
6
list1 = [1,3,4]
string1 = 'string'
tuple(list1)
(1, 3, 4)