Python - 基本算术/变量名称

时间:2018-05-27 16:20:56

标签: python

分配是编写一个程序,它吐出一个奇数,一个数字,然后对这些数字进行基本算术运算。我已经把它吐出输出很好,但我似乎无法找到一种方法让生成的数字成为等式的一部分。这是我的代码:

odd = int(input("Please enter an odd number from 1 to 99: "))
print(int(odd))
num = int(input("Please enter a number from 1 to 200: "))
print(int(num))
print('odd + num =',odd+num)
print('odd - num =',odd-num)
print('odd * num=',odd*num)
print('odd / num =',odd/num)
print('odd + num =',num+odd)
print('odd - num =',num-odd)
print('odd * num =',num*odd)
print('odd / num =',num/odd)

我需要' odd / num ='要用生成的数字替换部分,但我不确定如何做到这一点,我的教科书对此一无所知。

真的很感激任何帮助。

1 个答案:

答案 0 :(得分:0)

你可能想做这样的事情:

print('{} + {} = {}'.format(odd, num, odd+num))
print('{} / {} = {}'.format(odd, num, odd/num))

以及其他操作。