1.

Write the output of the given code #!/usr/bin/python str = “this-is-real-string-example….wow!!!”; print “Min character: ” + min(str); str = “this-is-a-string-example….wow!!!”; print “Min character: ” + min(str);

Answer»

Min character: ! 

Min character: !



Discussion

No Comment Found