curriculum/challenges/english/blocks/learn-how-to-offer-technical-support-and-guidance/661f92f280d7f340dcfc56ca.md
To indent means to move the text or code inward from the margin of the document. In programming, indenting is used to make the structure of the code clearer and help in understanding how blocks of code relate to each other.
For example, In Python, the body of a loop or a function is indented to show that it is part of that loop or function.
Got it. So, if I BLANK the blocks consistently, it improves code readability?
indent
It refers to creating space at the beginning of a line to visually separate code blocks, for better clarity and readability.
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Tom",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "9.1-1.mp3",
"startTime": 1,
"startTimestamp": 15.2,
"finishTimestamp": 19.6
}
},
"commands": [
{
"character": "Tom",
"opacity": 1,
"startTime": 0
},
{
"character": "Tom",
"startTime": 1,
"finishTime": 5.4,
"dialogue": {
"text": "Got it. So if I indent the blocks consistently, it improves code readability?",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 5.9
}
]
}