...

/

Quiz Yourself on Lists

Quiz Yourself on Lists

Test your knowledge of lists.

We'll cover the following...

Quiz

1.

What will be the output of the following program?

msg = list('www.google.com')
ch = msg[-1]
print(ch)
A.

w

B.

o

C.

m

D.

SyntaxError


1 / 12
...