Python 聊天机器人数学函数

Python Chatbot Math Functions

我正在用 Python 制作一个聊天机器人。我如何教我的聊天机器人为与之交谈的人做数学?我有办法让它使用 Python 数学函数(即 3 * 8)吗?

是的,做数学很容易,

乘法:

input_0 = input("What is the first number you want to multiply")
input_1 = input("What is the second number you want to multiply")

answer = int(input_0) * int(input_1)

print(answer)

除法 :

input_0 = input("What is the first number you want to divide")
input_1 = input("What is the second number you want to divide")

answer = int(input_0) / int(input_1)

print(answer)

加法:

input_0 = input("What is the first number you want to add")
input_1 = input("What is the second number you want to add")

answer = int(input_0) + int(input_1)

print(answer)

减法 :

input_0 = input("What is the first number you want to subtract")
input_1 = input("What is the second number you want to subtract")

answer = int(input_0) - int(input_1)

print(answer)