```python print("a", "b", "c", "d") fruits: list[str] = ["apple", "guava", "mango"] mango: str = fruits.pop() print("I have got a", mango, "to eat!") ``` ### CPython ```console (base) saurabh-kumar@Awadh:~/Projects/System/lpython$ python ./examples/example.py a b c d I have got a mango to eat! ``` ### LPython ```console (base) saurabh-kumar@Awadh:~/Projects/System/lpython$ ./src/bin/lpython ./examples/example.py abcd I have got amangoto eat! ```