22.5k views
2 votes
What is the output?

>>> password = "sdf345"
>>> password.isalpha()
>>>

2 Answers

1 vote

Answer:

The answer is false

Step-by-step explanation:

The string isalpha() returns True if all the characters are letters and the string has at least one character.

User Kaushik NP
by
4.2k points
2 votes

Answer:

False

Step-by-step explanation:

What is the output? >>> password = "sdf345" >>> password-example-1
User Alexa Elis
by
4.5k points