Skip to content

Commit c11c4ad

Browse files
committed
Fix 0014
1 parent 51d85cf commit c11c4ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Drake-Z/0014/0014.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def txt_to_xlsx(filename):
2525
worksheet.cell(row = i, column = 1).value = i
2626
for m in range(0, len(file_cintent[str(i)])):
2727
worksheet.cell(row = i, column = m+2).value = file_cintent[str(i)][m]
28-
workbook.save(filename = 'student.xlsx')
28+
workbook.save(filename = 'student.xls')
2929

3030
if __name__ == '__main__':
3131
txt_to_xlsx('student.txt')

0 commit comments

Comments
 (0)