Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
ch = 'A' if ch.islower(): print("yes") else: print("no") ch = 'a' if ch.islower(): print("yes") else: print("no") ''' run: no yes '''