I have a CSV file with ";" as separator made like this:
col1;col2;col3;col4
4;hello;world;1;1
4;hi;1;1
4;hi;1;1
4;hi;1;1
Obviously by using ";" as sep it gives me the error about tokenizing data (obviously from the header less columns are expected), how can i obtain a dataframe like this:
col1 col2 col3 col4
4 hello;world 1 1
4 hi 1 1
4 hi 1 1
4 hi 1 1
It could be read even with others packages and other data type (even if i prefer pandas because of the following operations in the code)