what is the output?\n>>> password = \sdf#_356\\n>>> password.isalnum()\n>>>

what is the output?\n>>> password = \sdf#_356\\n>>> password.isalnum()\n>>>
Answer
Explanation:
Step1: Understand isalnum() method
The isalnum() method in Python checks if all characters in a string are alphanumeric (letters and numbers only).
Step2: Analyze the password string
The string "sdf#_356" contains non - alphanumeric characters (# and _).
Answer:
False