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