why am i getting the special symbols when i open in excel
filename = “android_history.csv”
with open(filename,‘w’,encoding=‘utf-8’) as f:
hdstr = “,”.join(h1)
hdstr+="\n"
print(hdstr)
f.write(hdstr)
for s in tr:
r1 = ",".join(s)
r1+="\n"
f.write(r1)