📜  python计算器代码复制粘贴——Python代码示例

📅  最后修改于: 2022-03-11 14:46:43.026000             🧑  作者: Mango

代码示例4
#Addition Calculator
a = "Type Number Here"
b = "Type Another Number"
print (a * b)
""""

#Subtraction Calculator
c = "Type Number Here"
d = "Type Another Number"
print (c * d)

#Multiplication Calculator
e = "Type Number Here"
f = "Type Another Number Here"
print (e * f)

#Division Calculator
g = "Type Number Here"
h = "Type Another Number"
print (g * h)

"""