【python&flask-1】简单实现加减乘除输入界面

app.py

python 复制代码
import flask
from flask import Flask, render_template, request
# 计算精确的浮点结果,float加法也计算不出来
from decimal import Decimal

app = Flask(__name__)

@app.route('/')
def home():
    return render_template('index.html')

@app.route('/calculate', methods=['POST'])
# POST请求处理用户提交的数据
def calculate():
    num1 = Decimal(request.form['num1'])
    num2 = Decimal(request.form['num2'])
    operation = request.form['operation']
    result = Decimal(0)
    # 输入的两个数和运算符,结果初始为0

    if operation == 'add':
        result = num1 + num2
        # 加
    elif operation == 'subtract':
        result = num1 - num2
        # 减
    elif operation == 'multiply':
        result = num1 * num2
        # 乘
    elif operation == 'divide':
        if num2 != Decimal(0):
            result = num1 / num2
        else:
            return "错误:分母不能为0"
        # 除
    result = round(result,4)
    # 保留四位小数

    return render_template('result.html', num1=num1, num2=num2, operation=operation, result=result)
    # 然后将计算结果和输入的两个参数返回给result.html渲染
if __name__ == '__main__':
    app.run(debug=True)

templates文件夹

index.html

html 复制代码
<!DOCTYPE html>
<html>
<head>
    <title>在线计算器</title>
</head>
<body>
    <h1>在线计算器</h1>
    <form action="/calculate" method="POST">
        <!-- 获得请求 -->
        <input type="text" name="num1" required>
        <select name="operation" required>
            <option value="add">+</option>
            <option value="subtract">-</option>
            <option value="multiply">*</option>
            <option value="divide">/</option>
            <!-- 加减乘除的操作 -->
        </select>
        <input type="text" name="num2" required>
        <button type="submit">开始计算</button>
        <!-- 提交表单 -->
    </form>
</body>
</html>
<!-- type="number" 时,浏览器会为输入字段提供一些额外的验证和用户界面上的增强功能,
例如限制输入为数值、显示数值调节器控件等。 -->

result.html

html 复制代码
<!DOCTYPE html>
<html>
<head>
    <title>计算结果</title>
</head>
<body>
    <h1>计算结果</h1>
    <p>{{ num1 }} {{ operation }} {{ num2 }} = {{ result }}</p>
    <!-- 执行相关的计算操作的变量 -->
</body>
</html>

实现效果

支持小数点计算

相关推荐
二川bro21 小时前
量子计算入门:Python量子编程基础
python
夏天的味道٥1 天前
@JsonIgnore对Date类型不生效
开发语言·python
tsumikistep1 天前
【前后端】接口文档与导入
前端·后端·python·硬件架构
小白学大数据1 天前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点
java·开发语言·爬虫·python
SEO_juper1 天前
别再纠结LLMs.txt了!它背后的真相与最佳使用场景,一文讲透。
开发语言·ai·php·数字营销
g***B7381 天前
JavaScript在Node.js中的模块系统
开发语言·javascript·node.js
烤麻辣烫1 天前
黑马程序员大事件后端概览(表现效果升级版)
java·开发语言·学习·spring·intellij-idea
思密吗喽1 天前
宠物商城系统
java·开发语言·vue·毕业设计·springboot·课程设计·宠物
csbysj20201 天前
Lua 函数
开发语言
头发还在的女程序员1 天前
三天搞定招聘系统!附完整源码
开发语言·python