Это мой код:
print(f" the int of your number is {int(float(input('type in a number: ')))}")
Есть ли способ присвоить переменную на основе {int(float(input('type in a number: ')))}, чтобы я мог использовать ее повторно?
{int(float(input('type in a number: ')))}
Вам придется сделать это в два этапа:
float_answer = float(input('type in a number: ')) print(f" the int of your number is {int(float_answer)}")