Back

About

Shedload Of Code is a blog on all things programming, coding, building software and doing data science.

I created this site after working in the software development and data science fields for many years. I've arrived at a point where I feel like I have enough experience and insight to share advice and tutorials that are valuable! This site also serves as a place to store code that is useful for both myself and others in future projects.

I am passionate about solving problems with code, and want to make any code on this site easy to find, view and use in your own projects. That's why every code snippet can be copied in one click, or made full screen for easier viewing. Some code snippets can also be ran if you see a terminal under them. If you hover over the example below (or click it on mobile) you'll see the buttons for copy and full screen appear.

main.py
def main():
  for i in range(1, 6):
    print("Hello Shedload Of Code " + str(i))

if __name__ == "__main__":
  main()
TERMINAL
Python
user@ShedloadOfCode:~$ main.py