Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need to look at the below functions. They are supposed to check if the argument has lower case letters. I need to describe what

I need to look at the below functions. They are supposed to check if the argument has lower case letters.

I need to describe what the function does in reality when when called with a string argument. I need show this for each example.If it does not correctly check for lowercase letters, then I need to give an example argument that produced incorrect results.I need to mention why the result is incorrect.

# 1

def any_lowercase1(s):

for c in s:

if c.islower():

return True

else:

return False

# 2

def any_lowercase2(s):

for c in s:

if 'c'.islower():

return 'True'

else:

return 'False'

# 3

def any_lowercase3(s):

for c in s:

flag = c.islower()

return flag

# 4

def any_lowercase4(s):

flag = False

for c in s:

flag = flag or c.islower()

return flag

# 5

def any_lowercase5(s):

for c in s:

if not c.islower():

return False

return True

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions