Skip to content

Commit 04ecaaa

Browse files
committed
test
1 parent 5e12f0c commit 04ecaaa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/no_use
1+
/no_use
2+
*.xlsx

readExcel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
dest_filename = 'empty_book2.xlsx'
66
ws1 = wb.active #第一个表
77
ws1.title = "range names" #第一个表命名
8-
#遍历第一个表的1到40行,赋值一个600内的随机数
8+
#遍历第一个表的1到40行,赋值一个600内的随机数
99
for row in range(1,40):
1010
ws1.append(range(60))
1111
ws2 = wb.create_sheet(title="Pi")

0 commit comments

Comments
 (0)