1. 程式人生 > >python幾個問題總結

python幾個問題總結

1. 錯誤資訊如下:   

f = open(file_name_or_filelike_obj, 'w+b')

IOError: [Errno 2] No such file or directory: '../files/row_styles.xls'

檔案路徑問題,原路徑:F:\python_mysql\files\row_styles.xls

執行的*.py檔案的路徑在:F:\python_mysql 下

原始報錯程式碼:w.save('../files/row_styles.xls')

改為:w.save('files/row_styles.xls')

ok 了。

2. IOError: [Errno 13] Permission denied: 'files/row_styles.xls'

檔案可能已經被開啟或者正在使用。