I'm trying to create a table of basically a list of words. I prefer the table format as eventually it's going to go into excel. However, with my code i keep getting an introduction of the letter 'b' before my string. Any help would be appreciated.
I even tried printing at various stages to see where and why they get introduced. Code:
from xlwt import Workbook
import numpy as np
wb = Workbook()
Number_Of_Days = int(input('How many days do you want?'))
All_Sheets = np.chararray((Number_Of_Days,1))
All_Sheets = np.chararray(All_Sheets.shape, itemsize = 10)
All_Sheets[:] = ''
print(All_Sheets)
count = 0
while count < Number_Of_Days:
Sheet_Name = input(print('Enter the name of day', count+1))
All_Sheets [count,0] = Sheet_Name
count = count + 1
print(All_Sheets)