我可以将输入提示分配给变量吗?

Can I assign an input prompt to a variable?

这是我的代码:

print(f" the int of your number is {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)}")