I want to make a program where I need to check the input of the user so, the question is How do I check the input value, if it`s a string or an integer?
Here's some experimental code that didn't work:
a = 10
print(type(a))
if (a==10):
    print("aaaaa")
else:
    if(type(a)== "<class 'int'>"):
        print("12345")
 
     
     
    