wie man sich von einem bestimmten Chart bis zum Ende der Saite in Python aufteilt

string = "stack_vidhya"
# write the symbol in parantheses
print(string.partition("_")[2])
#output
 #vidhya
Inquisitive Ibex