Open In App

Python | Miscellaneous | Question 1

What is the output of the following program : 




print \"Hello World\"[::-1]

(A)



dlroW olleH

(B)



Hello Worl

(C)

d

(D)

Error

Answer: (A)
Explanation:

[::] depicts extended slicing in Python and [::-1] returns the reverse of the string.

Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :