KnowledgeBoat Logo

Computer Science

What is the output when we execute list("hello")?

  1. ['h', 'e', 'l', 'l', 'o']
  2. ['hello']
  3. ['llo']
  4. ['olleh']

Python List Manipulation

20 Likes

Answer

['h', 'e', 'l', 'l', 'o']

Answered By

2 Likes


Related Questions