InterviewSolution
Saved Bookmarks
| 1. |
Describe the count(str, beg=0,end= len(string)) |
|
Answer» The method count( ) returns the number of occurrences of substring sub in the range [start, end]. |
|