+ 4
What makes good python coding style?
Just some essentials that differenciate a bad py and good py codes based on styling used. by styling redeability is included.
2 Antworten
+ 1
For easy visibility and readible you should split the code up into sections eg have variables together and generations together and write comments to tell people whats going on (# for commenting)
+ 1
Once you have a deeper understanding, use all the tools Python gives you: for instance, understand context managers, that is brilliant...