 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Write the output of the following code. # !/usr/bin/py thon str1 = “this is string example… ,wow!!!”;\ str2 = “exam”; print strl.find(str2); print strl.find(str2,10); print strl.find(str2, 40); | 
| Answer» The code is- 15 15 -1 | |