- 博客(2)
- 资源 (1)
- 收藏
- 关注
原创 python中的pct_change用法
****python中的pct_change用法:**代码:**s=pd.Series([1,2,3,4,5])print(‘periods=1,(当前值-前1值)/前1值’)print(s.pct_change(periods=1))print(‘periods=2,(当前值-前2值)/前2值’)print(s.pct_change(periods=2))print(‘去掉NaN’)print(s.pct_change(periods=2).dropna())结果:periods
2020-08-12 06:38:50
7253
原创 sqlite3.OperationalError: table* already exists报错
sqlite3.OperationalError: table test already exists报错,python报错原因解决方法报错原因import sqlite3con = sqlite3.connect(‘mydata.sqlite’)query = “”“CREATE TABLE test (a VARCHAR(20), b VARCHAR(20), c REAL, d INTEGER)”""con.execute(query)con.commit()数据库文件mydata.sq
2020-08-07 08:31:54
12880
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人