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