Glossary
HTML
CSS
JavaScript
Python

PYTHON

Code block in PYTHON

if statements don't decide on skipping or running the entire code. They only make decisions about a code block.

Python

if True:
  print("I'm a code block!")

 

 

We use an indentation of two spaces to highlight code blocks, like indenting this display statement.

Indentation refers to the space between the code and the code editor's margin.

Python

if True:
  print("I'm two spaces away!")

 

 

A code block can be more than a one-liner. All lines with the same indentation belong to the same code block.

We can see it here when we use print() to add one more line at the beginning.

Python

if True:
  print("Look at me!")
  print("I'm a code block")

Learn to Code in Python for Free
Start learning now
To advance beyond this tutorial and learn Python by doing, try the interactive experience of Mimo. Whether you're starting from scratch or brushing up your coding skills, Mimo helps you take your coding journey above and beyond.

Sign up or download Mimo from the App Store or Google Play to enhance your programming skills and prepare for a career in tech.

You can code, too.

© 2023 Mimo GmbH