Я думаю, вы имели в виду 1000
:
def F_to_C():
F=int(input("enter the F value:"))
if F>999:
print("input is too long")
else:
C=(F-32)*(5/9)
print("the corresponding celcius value is: ",C)
Тогда:
F_to_C()
Пример вывода:
enter the F value:234
the corresponding celcius value is: 112.22222222222223
Если хотите как целое число (округление):
def F_to_C():
F=int(input("enter the F value:"))
if F>999:
print("input is too long")
else:
C=round((F-32)*(5/9))
print("the corresponding celcius value is: ",C)
Если просто хотите округлить, чтобы стать просто числовой частью:
def F_to_C():
F=int(input("enter the F value:"))
if F>999:
print("input is too long")
else:
C=int((F-32)*(5/9))
print("the corresponding celcius value is: ",C)