Time:11-11
Why data not displayed in columns?
df.info() also display data not in columns
CodePudding user response:
as you can see columns seperate with ;. so you you have to define a separator :
df = pd.read_csv("abc.csv", sep = ';' )
Page link:https//www.codepudding.com/Mobile/606805.html