I have a list which I get from reading gsheet, it has all values in square brackets like this:
[['example1'], ['example2'], ['example3'], ['example4'], ['example5']]
I would like to remove brackets from values for further steps and it should look like:
['example1', 'example2', 'example3', 'example4', 'example5']
I'm stuck here for a while, any help is appreciated. Bit of my code:
SOURCE_SHEET = CLIENT.open_by_url(SOURCE_G_SHEET_URL).worksheet(source_ws_title)
rows_read = SOURCE_SHEET.get_all_records()
df_raw = pd.DataFrame(rows_read)
list = df_raw.values.tolist()