How do I use format python code?

You should beware of indentation in your code as indentation will affect how the code runs and can prevent you from being able to compile your code. It can also create logic errors, producing results which you didn't expect to receive. Make sure you code things in the right order, for example initialise variables before you use them. Also make sure to import modules which you may need to use at the start of your program. Apart from that, there is no special format needed to start off code unlike in other languages such as C or Java.

CL

Related Python Mentoring answers

All answers ▸

Create a program that generates prime numbers between two integer boundareis


What would output this code? print(hello world)


What is the difference between a for and a while loop?


Create an algorithm that can be used as a guessing game. Make sure to import random at the start.