11 22 33 14 5 6

12 23 34 12 23 34


, 2.

11 22 33 14 5 6

11 22 33 11 22 33


, 3.

11 22 33 14 5 6

14 5 6 12 23 34


, 4.

No output will be displayed.

">
MCQs > IT & Programming > Python > Output of the following Python code? lis = [11, 22, 33] lis1 = [14, 5, 6] lis2= lis + lis1 print (end='') for i in range(0,len(lis2)): print (lis2[i]*1, end=' ') print ("\r") lis3 = lis * 2 print (end='') for i in range(0,len(lis3)): print (lis3[i]+1, end=' ')

Python MCQs

What will be the correct output of the following Python code?

lis = [11, 22, 33]

lis1 = [14, 5, 6]

lis2= lis + lis1

print (end="")

for i in range(0,len(lis2)):

      print (lis2[i]*1, end=" ")

print ("\r")

lis3 = lis * 2

print (end="")

for i in range(0,len(lis3)):

      print (lis3[i]+1, end=" ")

Answer

Correct Answer:

11 22 33 14 5 6

12 23 34 12 23 34


Explanation:

Note: This Question is unanswered, help us to find answer for this one

Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

More Python MCQ Questions

search

Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it