Report Bug
Qus : What is the output when we execute list(“hello”)?
Qusजब हम लिस्ट ("हैलो") एक्सक्यूट करते हैं तो आउटपुट क्या है?

A. [‘h’, ‘e’, ‘l’, ‘l’, ‘o’]
B. [‘hello’]
C. [‘llo’]
D. [‘olleh’]


Solution
A. [‘h’, ‘e’, ‘l’, ‘l’, ‘o’]



Explanation
Execute in the shell to verify.



Report Bug