InterviewSolution
Saved Bookmarks
| 1. |
Explain Parameters of str.startswith(str, beg=0,end=len( string) ); |
|
Answer» str — This is the string to be checked. beg — This is the optional parameter to set start index of the matching boundary. end — This is the optional parameter to set end index of the matching boundary. |
|