Computer Science, asked by vaibhavpoddar09, 5 months ago

What will be the output produced by the following code?
name='POP
class='XI'
print ("Name is", name**3, end=*)
print (“she is in class', class)​

Answers

Answered by swastikrout1973
1

There will be a SyntaxError at line 3 .

But instead of * the value of the end parameter is '*' then the following will be the output:

Name is POPPOPPOP*she is in class XI

Similar questions