You can use tuples to represent immutable vectors in Python. Tuples are immutable data structures that behave like a list but maintain order and are faster than lists.
example
myVec = (10, 15, 21) myVec[0] = 10
This will produce an error as tuples can't be mutated.