Following is my code that is used to insert a row to excel
from openpyxl import Workbook
wb = Workbook()
sheet = wb.active
i = ['an', '_xa100_list']
sheet.append(i)
wb.save('appending_values.xlsx')
The problem is , after writing to the above excel, when I opened the file , i can see the second column's value as '__ꄀlist__' instead of '_xa100_list'.
' \_xa100\_' got internally substituted by '__ꄀ__'
.
why is it happening and how can i print the exact string to excel rather than this internal converted form?