Learn Python #8 - Let's do Tuple...π
Tuples π‘
Tuple in Python is a collection that is ordered, and unchangeable.
Find an element by indexπ‘
You can find an element in the tuple by index
new_tuple=(1,"b",False)
print(new_tuple[0]) //1
print(new_tuple[1]) //"b"
Ordered π‘
The tuple is an...
nitinreddy3.hashnode.dev1 min read