 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Write the output of the given code #!/usr/bin/pythonstr = “this is really a string example….wow!!!”; print “Max character: ” + max(str); str = “this is a string example….wow!!!”; print “Max character: ” + max(str); | 
| Answer» Output Max character: y Max character: x | |