Practice Question

Ques.) What is the output of the following code?
var = “James” * 2 * 3
print(var)

a) JamesJamesJamesJamesJamesJames
b) JamesJamesJamesJamesJames
c) Error: invalid syntax

answer: a)

@vaishu.swap10112016

Yes , correct.