+2 votes
in Class 11 by kratos

Write the output of the following code.

!/usr/bin/python

str = “Waltons Technology….wow!!!”;

print “str.upper() : “str.upper()

1 Answer

+1 vote
by kratos
 
Best answer

str.upper() : Waltons Technology ….WOW!!!

...