Advertisement
Guest User

Testing CSC108 Trevor

a guest
Nov 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. >>> from testingpython import indices
  2. >>> indices('The', 'p')
  3. []
  4. >>> indices('A coooool pool look', 'oo')
  5. [3, 6, 12, 17]
  6. >>> indices('a', 'and')
  7. []
  8. >>> indices(' ', ' ')
  9. [0]
  10. >>> indices(' the dog  is   pretty    cool', '  ')
  11. [8, 12, 21, 23]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement