Is there a Python-way to split a string after the nth occurrence of a given delimiter?
Given a string:
\'20_231_myString_234\'
It s
It depends what is your pattern for this split. Because if first two elements are always numbers for example, you may build regular expression and use re module. It is able to split your string as well.
re