Because it is space-delimited, Python does not allow decision structures to be nested within other decision structures. This differs from other languages that use curly-brackets and do allow this. For example; the following script would cause a SyntaxError exception if something True: if something else False: print("Do something cool!") O True False Question 8 5 pts In Python, the following statement tells the interpreter to 'do nothing'. It is often used during debugging and development as a placeholder within a control structure. O noop O continue O none O pass