I am extracting values from excel into a list but some of them are blank.
I want to check if the list is empty, and if empty insert 68 empty strings. Is there a way to do that?
a = []
if not a:
#enter 68 empty strings into a. eg: a = ['', '', '',....]