# def any(iterable):# for element in iterable:# if element:# return True# return Falseprint any(['A', '', 'B'])