I want to convert a table, represented as a list of lists, into a Pandas DataFrame. As an extremely simplified example:
Pandas DataFrame
a = [[\'a\', \'1.2\', \'
this below code will change datatype of column.
df[['col.name1', 'col.name2'...]] = df[['col.name1', 'col.name2'..]].astype('data_type')
in place of data type you can give your datatype .what do you want like str,float,int etc.