python_ref_string_rsplit_1.py:
x
 
txt = "apple, banana, cherry"
x = txt.rsplit(", ")
print(x)