What is the difference between isalnum ( ) and isalpha( )?
Answers
Answered by
2
Answer:
The Python isalpha() method returns true if a string only contains letters. Python isalnum() only returns true if a string contains alphanumeric characters, without symbols.
Explanation:
marks as brainliest.
Similar questions