The method returns true if the string contains only alphanumeric characters:
a) istitle()
b) isspace()
c) isdigit()
d) isalnum()
Answers
Answered by
0
Answer:
isalnum()
Explanation:
Isalnum method returns true if the string contains only alphanumeric characters. If the string contains any special character like: _; #; *; etc. it returns false.
Similar questions