Question: str1 = 5.25 str2 = abcd-1234 print(str1.isdigit(),str2.isalnum()) Please explain why the output is False Falsw
str1 = "5.25" str2 = "abcd-1234" print(str1.isdigit(),str2.isalnum())
Please explain why the output is False Falsw
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
