This can be a challenging course, especially if you have limited programming experience. Below is a non-exhaustive list of the "little things" that we feel will greatly improve your chance for success.
This is a graduate level programming course! While we use analytics examples, the goal of the course is to build proficiency in using Python to solve new problems and to expose you to some analytics use cases. Do not expect to see the same homework problems with different data on the exams, you will be disappointed.
Learn to use search engines effectively.
Try to clearly state what you are using and a single discrete step that you need to complete.
Generally something like "numpy matrix vector multiplication" or "python iterate list in reverse order" will suit your needs.
Familiarize yourself with reading documentation. The popular libraries all have thorough official documentation. It will take time to get used to how it is laid out and how to navigate the web interfaces. It is worth spending this time to learn how to find what you need.
Watching the videos and completing the homeworks is not enough to get a high score in this course. You will need to experiment on your own with the tools, concepts, and data structures which are introduced in the course materials to get to a point where you can effectively use them in a timed exam.
Debugging is an iterative process where you must trace the undesired behavior back to the root cause. Sometimes it's simple; other times it can be frustratingly complex.
The development section was deliberately given after the debugging section. The idea here is to do the debugging process in reverse - incrementally make sure that everything is getting set correctly from the start and checking as you go. The process is far from foolproof, but it will usually leave you in a better situation.
return
intermediate steps in your computation, and run your incomplete solution on some demo data. A demo dataset is provided in most homework exercises and will be provided for all exam exercises.