Is there a way to split a string by every nth separator in Python?

Viewed 20324

For example, if I had the following string:

"this-is-a-string"

Could I split it by every 2nd "-" rather than every "-" so that it returns two values ("this-is" and "a-string") rather than returning four?

6 Answers
Related