Python Interview questions - lia
(Python version 3.9 or later version)
Which code snippet will give this output:
['H', 'e', 'l', 'l', 'o']
break("Hello")
split("Hello")
unpack("Hello")
list("Hello")
gk