✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Question #14: True or false? Code indentation must be 4 spaces when creating a code block?
```python
a=2
b=2
if a==b:
# four spaces of indent are used to create the block
print("4 space ", a, " is equal to ", b)
```