Notes for Session 05¶
A collection of notes to go over in class, to keep things organized.
Lightning Talks¶
Marlon M Estrada
Ali Dehghani
David K Kan
Evgeny S Uvarov
Srikanth Thadigol Reddappa
Issues that came up during the week.¶
git and generated files¶
In general, you don’t want to put generated files in git.
In this case, the letters your mailroom program created.
Caution: be very careful with git add .
or git add *
– generally better to specifically add the files you now you need.
Style¶
Use PEP8 style – really!
https://www.python.org/dev/peps/pep-0008/
The ONLY exception is if you work in an organization that has a different style guide. It can make sense for your python code to match other code in an organization. But otherwise, use a style consistent with the rest of the Python world.
And don’t use “Hungarian Notation” – it is really non-pythonic, and sometimes actually wrong – and a string called intSomething
just adds confusion!
The best way to do this is with a linter in your editor – like the Anaconda package in Sublime. A number of you are getting really annoyed by all the “noise” that the linter creates. But if you keep your code in PEP8 style, it won’t be there!
Minor Issues¶
Remember that:
something in a_dict
checks if this
is a key
similarly:
for k in dict:
loops through the keys. So no need for:
for k in dict.keys():