(I am barely starting out coding in Python and this is my first time using stack overflow)
Today I was making a conversion calculator (lbs to Kg) but the code doesn't return anything. Here is the code:
question = int(input("Enter input(lbs) here = "))
while question == int:
equation = question/2.20462262
print(equation)
While the question(line 3) appears, when I type a int number in, it doesn't return anything and the code simply ends. (Please do forgive any mistakes I may have made with this post/and just silly mistakes in the code. I'm learning everyday and I do hope I can get better!)