How to get string after last comma in a field

Viewed 14455

I have a column with data like this that I'm accessing via Python:

501,555,570=3.5

I want to get 570=3.5.

How can I do that? Would it be a variation of the split command?

7 Answers
Related