How can I represent immutable vectors in Python?


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.

Updated on: 05-Mar-2020

151 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements