Contact: aviboots(AT)netvision.net.il
39,919 questions
51,852 answers
573 users
lst = [] if not lst: print("Empty") ''' run: Empty '''
lst = [] if len(lst) == 0: print("Empty") ''' run: Empty '''