【发布时间】:2021-11-15 00:47:26
【问题描述】:
这里我们默认获取A,B作为列名,如何覆盖列名并编写我们自己的列名
import ipysheet
from ipysheet import sheet, cell
sheet1 = sheet()
cell(0,0,10);
cell(1,1,100);
cell(2,2,1000);
cell(3,3,"Hello");
sheet1
【问题讨论】:
标签: python jupyter-notebook widget ipython ipywidgets