SE-> A memo when I was a developer and studied programming before changing jobs. Updated from time to time.
Once you can program to some extent, it is important to study reading the code of others. Even at work, I spend a lot of time reading the code of others, and reading the code created by a talented engineer deepens my understanding of "what is good code?"
--While reading the source code, actually move it. --Even if you look at the source code without understanding the behavior of the program, it is difficult to understand each process. ――First of all, actually run the program and understand the function --If there is a main function, read it from there. ――You can get the whole picture. Also, it is easy to understand the connection between the operation and the code. --Read step by step in the order of module-> class method-> block-> step.
-Reading Great Code (Beautiful Python code list) --Especially howdoi is easy to read, so it is for beginners -Read source code with few dependent modules --- Ask specialist Maya Okano how to read and use Python -[For beginners] How to read Python source code --Miyabi no Dot Pee Wai
Recommended Posts