Arthur

while True: learn()

DataFrame的日常操作解决方案
INSERT ROW 增加一行数据loc(不推荐)12345678910df = DataFrame(columns=('lib', 'qty1', 'qty2'))for i in range(5): df.loc[i] = [randint(-1,1) for n in range(3)]print(df)# lib qty1 qty2# 0 0 0 -1# 1 -1 -1 1# 2 1 -1 1# 3 0 0 0# 4 1 -1 -1 loc方法可以接受一个列index, ...

用Hexo主题搭建GitPage博客

Hexo的搭建和使用

官方文档
Hexo是一个根据本地markdown文档和html文件生成静态网站的框架工具,能够用简单的指令简化静态网站管理流程。