Search Results

0
votes

Java or Python for an intermediate PHP guy. Career advice.

As many others have noted, if you are learning a new language in order to land a job, Java would be your best bet, closely followed by .NET set of languages. That being said, there's nothin …
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) …