I have a list of 1000 records in it. The list is a mixture of int values and str values for example
    df.head()
+-------+
|   0   |
+-------+
| asber |
| cdedg |
| hfowe |
| idcpo |
| fukvm |
| 123   |
| 456   |
| 789   |
| 012   |
+-------+
I want all the numerical value in one side and all categorical value in another side basically, make 2 new list one with all numerical value and another with categorical value
Please let me know if there is a solution for this..
 
     
     
     
    