Python String isalnum() Method
Python String isalnum() method checks whether all the characters in a given string are alphanumeric or not. Alphanumeric means a character that is either a letter or a number.
Syntax:
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course. And to begin with your Machine Learning Journey, join the Machine Learning - Basic Level Course
string_name.isalnum()
Parameter:
isalnum() method takes no parameters
Return:
- True: If all the characters are alphanumeric
- False: If one or more characters are not alphanumeric
Example 1: Working of isalnum()
Python
# Python program to demonstrate the use of# isalnum() method # here a,b and c are characters and 1,2 and 3# are numbersstring = "abc123"print(string.isalnum()) # here a,b and c are characters and 1,2 and 3 # are numbers but space is not a alphanumeric # characterstring = "abc 123" print(string.isalnum()) |
Output:
True False


