I want to sort a pandas dataframe based on a column, but the values are stored as strings, but they should be treated as integers.
df.sort(col1)
where col1 = ['0','1','12','13','3'].
How can I use it so that it considers these numbers as integers and not strings?