Search Results

11
votes

newbie question: why are python strings and tuples are made immutable?

One is performance: knowing that a string is immutable makes it easy to lay it out at construction time — fixed and unchanging storage requirements. This is also one of the …
9
votes

The SHORTEST way to remove multiple spaces in a string in Python

import re s = "The fox jumped over the log." re.sub("\s\s+" , " ", s) …