str1 = "21345" print(str1.isdigit()) str2 = "2134python" print(str2.isdigit()) """ result: True False """