We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e12f0c commit 04ecaaaCopy full SHA for 04ecaaa
.gitignore
@@ -1 +1,2 @@
1
-/no_use
+/no_use
2
+*.xlsx
readExcel.py
@@ -5,7 +5,7 @@
5
dest_filename = 'empty_book2.xlsx'
6
ws1 = wb.active #第一个表
7
ws1.title = "range names" #第一个表命名
8
-#遍历第一个表的1到40行,赋值一个600内的随机数。
+#遍历第一个表的1到40行,赋值一个600内的随机数
9
for row in range(1,40):
10
ws1.append(range(60))
11
ws2 = wb.create_sheet(title="Pi")
0 commit comments