Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
injetlee committed Jul 1, 2016
1 parent 5e12f0c commit 04ecaaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/no_use
/no_use
*.xlsx
2 changes: 1 addition & 1 deletion readExcel.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
dest_filename = 'empty_book2.xlsx'
ws1 = wb.active #第一个表
ws1.title = "range names" #第一个表命名
#遍历第一个表的1到40行,赋值一个600内的随机数
#遍历第一个表的1到40行,赋值一个600内的随机数
for row in range(1,40):
ws1.append(range(60))
ws2 = wb.create_sheet(title="Pi")
Expand Down

0 comments on commit 04ecaaa

Please sign in to comment.