Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. s = "Hello Python!"
  2.  
  3. print(s.count('o'))
  4. # output : 2
  5.  
  6. print(s.count('h'))
  7. # output : 1
  8. # case sensitive: 'H' is not counted as an occurrence of 'h'
  9.  
  10. print(s.count('Py'))
  11. # output : 1
  12.  
  13. print(s.count('x'))
  14. # output : 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement