0
What does it mean to delimit a block of code?
Delimit meaning
5 Respostas
+ 4
From which programming language you are talking about? May beyou share te code with us?
+ 2
Is it possible that they mean this:
You have to set off the statements that are supposed to belong to a block of code, for example in an if branch.
In Python you do this by 'indenting'.
if 1==1:
print(1) # belongs to if block
print(2) # this too
print(3) # but this doesn't.
Details (just for reading, not for running):
https://code.sololearn.com/cT5BRIbkia21/?ref=app
+ 2
Thanks for the I fo HonFu!
0
I'm new to coding so I don't know what it means at all.