Python MCQ Questions Set-6
Here is an interesting Python Quiz. Attempting these Multiple choice questions will help you to evaluate your knowledge and skills. Which of the following commands will create a list?a) list1 = list()b) list1 = []c)list1=[1,2,3,4]d) all of the mentioned What is the output when we execute list(“hello”)?a) [‘h’, ‘e’, ‘l’, ‘l’, ‘o’]b) [‘hello’]c) [‘llo’]d) [‘olleh’] … Read more