Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. types = ['broken', 'intact', 'crushed']
  2. collected_shells = 0
  3. for shell in types:
  4. if shell=="broken":
  5. continue
  6. else:
  7. collected_shells+=1
  8. print(collected_shells)
  9. break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement