1.

What is the output of the code shown below? t = '%(a)s, %(b)s, %(c)s' t % dict(a='hello', b='world', c='universe')

A. hello, world, universe’
B. ‘hellos, worlds, universes’
C. Error
D. hellos, world, universe
Answer» B. ‘hellos, worlds, universes’


Discussion

No Comment Found