py-repo

a python playground
Index Commits Files Refs README
tupples.py (257B)
   1 #    Tupples is a type of a data structure, in a nutshell its a container
   2 #    where we can store different values, similar to lists
   3 #    A tupple is unmutable, it cannot be changed!
   4 
   5 coordinate = (4, 5)
   6 coordinates = [(4, 5), (2, 4), (65, 2)]
   7 
   8 print(coordinate[1])