You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In [1]: data = """c1\ntext11,text12\ntext21,text22"""
In [2]: read_csv(StringIO(data))
Out[2]:
c1
text11 text12
text21 text22
In [3]: read_csv(StringIO(data),header=0,names=list('abc'))
Bus error (core dumped)