nq1s788

8 слово по номеру

Dec 17th, 2025
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. alph = 'ЛНРТ'
  2. cnt = 1 #номер слова
  3. for q in alph:
  4.     for w in alph:
  5.         for e in alph:
  6.             for r in alph:
  7.                 for t in alph:
  8.                     s = q+w+e+r+t
  9.                     if cnt == 150:
  10.                         print(s)
  11.                     cnt += 1
Advertisement
Add Comment
Please, Sign In to add comment