 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Write the output of the following code#!/usr/bin/py thon str = ” this is string example….wow!!! “; print str.lstrip( ); str = “88888888this is string example….wow!!!8888888”; print str.lstrip(‘8’); | 
| Answer» Output this is string example….wow!!! this is string example..,.wow!!!8888888 | |