Currently lpython does not support else part in for. a very basic code to generate this would be ``` i: i32 for i in range(5): print(i) else: print('hey') ``` In cpython this would give output as: ``` 0 1 2 3 4 hey ``` While in lpython output is ``` 0 1 2 3 4 ```