Explore PEP 8 - Python's in-house coding standard.
The Python Enhancement Proposal 8 or PEP 8 is a styling guide for Python code. Following a style guide such as the PEP 8 improves the readability and overall understanding of Python code. However, like any style guide, PEP 8 is not always applicable in every circumstance. The key is the use the style guide consistently when you can (and that comes with more coding experience). Please read the style guide in full (see here) and apply it your creative briefs from henceforth.
A key feature of a reproducible piece of code is that any person, at any given day, in any given computing machine should be able to run your analysis and arrive at the same conclusions as you have. In practice, this is easier said than done. When you share a script, you can't necessarily guarantee that the person receiving the script has all the same environmental components that you do – the same version of Python and the same version of libraries you use. This can result in the outcomes of your documented and scripted process turning out differently on a different machine.
Please watch the following video to understand more about why reproduciblity matters!