I want to differentiate between the data types "string"&"int", if the input is "int" it will be appended, if not it will ask for correction
**no_inputs = 5
l =[]
while no_inputs >0:
    user_input = int(input("Please enter a number : "))
    if isinstance(user_input, int):        
        l.append(user_input)
        no_inputs -= 1
    elif isinstance(user_input, str):
        print("Please enter a number only ")
print(l)**