Getting started with Python and Spyder

What is Python? Python is an object oriented, interpreted programming language that is used for tasks including scientific computing, data analysis and web development. Object-oriented programming languages organise software design around data, or objects, rather than functions and logic. Python Continue Reading …

How to check your code

Whether you’re studying a course or self learning it’s nice to be able to check your code. It’s time to introduce code linters. A linter checks your code for typos, unused variables and general formatting. These tools are particularly helpful Continue Reading …