+ 2
If indentation
Means there must be indentation ( whitespace as we used { ...... } in many languages ) in python. Is it correct?
1 ответ
+ 3
Yes. This is incorrect:
if True:
# statements
This, however, is:
if True:
# statements
Means there must be indentation ( whitespace as we used { ...... } in many languages ) in python. Is it correct?