import pandas as pd
import uuid
import sqlite3
df = pd.DataFrame({
'Name': ['John Doe', 'Jane Smith', 'John Doe', 'Jane Smith','Jack Dawson','John Doe']})
for name in df['Name'].unique():
df.loc[df['Name'] == name, 'UUID'] = str(uuid.uuid4())
con = sqlite3.connect(r"C:\Us
把uuid加入DataFrame中并存入SQLite3数据库
最新推荐文章于 2024-09-19 22:15:09 发布
在将UUID数据放入DataFrame并存储到SQLite3数据库时,需注意SQLite3不支持UUID格式,需要将UUID转换为字符串类型。
摘要由CSDN通过智能技术生成