I have list that contains some value now i want to check it for empty string and Null values. So i am using below code for same but output is not coming correct. On checking for '' empty string it is giving output 'not nice' Its working fine for 'Null' value but not considering it for '' empty values. Any help would be appreciated.
y=['','']
if ('Null' or '') in y:
print ('nice')
else:
print('not nice')