Contact: aviboots(AT)netvision.net.il
39,726 questions
51,615 answers
573 users
import string def check_lowercase_letter(s): for letter in s: if letter not in string.ascii_lowercase: return False return True s = "python" print(check_lowercase_letter(s)) s = "Python" print(check_lowercase_letter(s)) ''' run: True False '''