निम्नलिखित कथनों के बाद आउटपुट क्या होगा?
What will be the output after the following statements?
x = 'Python' print(tuple(x))
A
(‘P’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’)
B
(Python)
C
[‘P’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’]
D
[‘Python’]
Explanation
Correct Answer: A) (‘P’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’)