Q111
What will be the output of the following Python code snippet? print([i.lower() for i in "HELLO"])
A.
['h', 'e', 'l', 'l', 'o']
AnswerB.
hello'
C.
['hello']
D.
hello
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board