python-style-guide icon indicating copy to clipboard operation
python-style-guide copied to clipboard

Add working with files section

Open eyalstoler opened this issue 7 years ago • 1 comments

  • [ ] Use absolute path not relative (path.dirname(__file__) to reduce verbosity)
  • [ ] Always use with
  • [ ] Avoid reading and writing at thew same time

eyalstoler avatar Nov 27 '17 12:11 eyalstoler

  • [ ] Use a Context Manager
  • [ ] Check File Existence
  • [ ] Handle File Open Modes
  • [ ] Handle File Encoding
  • [ ] Handle Exceptions
  • [ ] Close Files Explicitly

chandru-engineer avatar Jun 16 '23 10:06 chandru-engineer