What is the output of the following code ?
ms = ('A','D', 'H','U','N','I','C')
print(ms[1:4])
Qus
निम्नलिखित कोड का आउटपुट क्या है ?
ms = ('A','D', 'H','U','N','I','C') print(ms[1:4])
A. (‘D’, ‘H’, ‘U’)
B. (‘A’, ‘D’, ‘H’,’U’,’N’,’I’,’C’)
C. (‘D’,’H’,’U’,’N’,’I’,’C’)
D. (‘D’,’H’,’U’,’N’,’I’,’C’)