i want to read data from google sheets using gspread - but i also want the None values in the nested list -
I read the data with the following code and it works fine:
FN = "TestSheetGSPREAD"
wb1 = gc.open (FN)
ws1 = wb1.get_worksheet(0)
data = ws1.get('A3:H100').value
In the google sheet only the first column A is filled - the rest of the columns is empty.
Now i get this result:
[['AAPL'], ['FB'], ['MSFT'], ['AMZN'], ['CAT'], ['V'], ['BAYN.DE']]
But i want also the None / "" values in the result - like:
[['AAPL',None,None,None,None,None,None,None],...]
Is this somehow possible using Gspread?