def example_function():
    # This is indented with 4 spaces
    if condition:
        # This is indented with 8 spaces
        print("Indented text")
        for item in items:
            # This is indented with 12 spaces
            process(item)
