Source Code:
(back to article)
# Example of "Unexpected indent" def my_function(): if True: print("Hello, world!") # Fixing the error def my_function(): if True: print("Hello, world!")
Result:
Report an issue