+ 3
In Python is a tuple fastest for read only data
For read only data is a tuple faster than a list or a dictionary
2 Respostas
0
For read only purposes, an immutable sequence like the tuple is faster than a mutable sequence like lists or dictionaries.
+ 2
😊