dxnge

tsk 7

Nov 3rd, 2021 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. from itertools import product
  2. a = sorted(product('ЛЕМУР', repeat=4))
  3. for i in a:
  4.     if i[0] == 'Л':
  5.         print(a.index(i)+1)
  6.         break
  7.  
Add Comment
Please, Sign In to add comment