DialOG_

Untitled

Oct 13th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. string = input()
  2. count = 0
  3. for i in string:
  4.     if i == "o" or i == "O":
  5.         count += 1
  6. print(count)
Add Comment
Please, Sign In to add comment