Advertisement
Farz0l1x

Untitled

Jan 15th, 2024
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. from itertools import *
  2. count = 0
  3. for elem in product('БЕЛКА', repeat = 4):
  4.     s = ''.join(elem)
  5.     if s.count('Б') == 1:
  6.         count += 1
  7. print(count)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement