我有以下Sqlite设置尝试使用%python
import seaborn as sns
import matplotlib
import numpy as np
matplotlib.use('Agg')
import matplotlib.pyplot as plt
plt.rcdefaults()
import StringIO
def show(p):
img = StringIO.StringIO()
p.savefig(img, format='svg')
img.seek(0)
print "%html <div style='width:600px'>" + img.buf + "</div>"
""" Prepare your plot here ... """
# Use the custom show function instead of plt.show()
x = np.random.randn(100)
ax = sns.distplot(x)
show(sns.plt)
项更新Tablename
表作为列名和值
问题是,我想将所有Keys
添加到单个记录中,其中items
不会更改,但Name
更改为Items
中的所有Items
我的代码将通过for循环执行此操作但具有多个记录,我想要的只是一个包含所有Keys
的单个记录
Items
完整代码:
Keys=['a','b',etc]
Tablename='Asfoor'
Name='Deek'
for item in keys:
data=[Name,Item]
cur.executemany("INSERT INTO "+Tablename+" (Name,"+Item+") VALUES(?,?)",(data,))