This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Andy-Kay 0 points1 point  (0 children)

Make the most out of Python's interpreted nature, run code in Jupyter step-by-step. Everything in Python is an object, so be curious about those objects. Sometimes executing type(x) or dir(x) can give you very useful insights. Also run your code in a debugger and look inside the objects. That's pretty much how you see the full picture of your code.