Quiz Yourself on Python Built-ins

Test yourself on Python built-ins.

We'll cover the following...

Quiz

1.

What will be the output of the following code?

a = ''
b = ''
c = ''
if_exist = any([a, b, c])
print (if_exist)
A.

True

B.

{}

C.

[‘a’,‘b’,‘c’]

D.

False


1 / 3