上传文件至「/」

This commit is contained in:
2026-03-21 14:21:09 +08:00
parent 335ea6008f
commit 350b5f6611
5 changed files with 97 additions and 0 deletions

5
02.py Normal file
View File

@@ -0,0 +1,5 @@
import streamlit as st
user_data = [{'编号': 1, '姓名': '张三', '年龄': 18},{'编号': 2, '姓名': '李四', '年龄': 19},{'编号': 3, '姓名': '王五', '年龄': 20}]
st.table(user_data)