i want to extract numbers from text with (,) for ex as separation between the numbers the dataframe is data frame i use this code
WATANIA_MTO['Numbers'] = WATANIA_MTOdf['col'].str.replace('PLATE ','').str.split('X', expand=True)
the out put is out put i want this comma in the end of number column to be between number like this Numbers 16,80,300 2,80
