News

When I give a date without a time or an datetime that is time zone naïve into a dataframe, the to_json result gives UTC time zone aware instants instead of time zone naïve instants. to_csv does the ...
import pandas as pd L1 = ["AAAAA","BBBBB","TTTTT","77777"] df1 = pd.DataFrame({"L1":L1}) df1.to_csv("test1.csv") L2 = ["AAAAA","ÄÄÄÄÄ","ßßßßß ...