Python 聊天机器人数学函数

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



浮云间
浏览 114回答 1
1回答

莫回无

是的,做数学很容易,乘法: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)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python