str.islower()
NA
#!/usr/bin/python3 str = "THIS is string example....wow!!!" print (str.islower()) str = "this is string example....wow!!!" print (str.islower())
False True