0 votes
in Python by
What is the output when following code is executed ?

>>> str1 = 'hello'
>>> str2 = ','
>>> str3 = 'world'
>>> str1[-1:]

a. olleh
b. hello
c. o
d. h
...