Computer Science, asked by studynowrv, 1 day ago

The method returns true if the string contains only alphanumeric characters:
a) istitle()
b) isspace()
c) isdigit()
d) isalnum()

Answers

Answered by shreyaadu14
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