I have some table names like below in python
table1='123_test_abc_de'
table2='123_test_10_abc_de'
table3='123_red_ce'
table4='123_utc'
Now from this list I want to split the tables like below
abc_de
abc_de
red_ce
utc
I have tried like below
repo=table.split("_", 1)[-1]
I got the following result for each table
test_abc_de
test_10_abc_de
red_ce
utc
How can I achieve what I want.