 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Write the output of the following code. #!/usr/bin/python str = “this is string example….wow!!!”; print str.ljust(50, ‘0’); | 
| Answer» This is string example …wow!!!000000000000000000 | |