Source Code:
(back to article)
# Beispiel für "Unexpected indent" def my_function(): if True: print("Hello, world!") # Fehler beheben def my_function(): if True: print("Hello, world!")
Result:
Report an issue