Guest User

Untitled

a guest
May 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. >>> outside
  2. [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
  3. >>> for i in range(0, 16):
  4. ...     outside[i / 4][i % 4] = cipher[i]
  5. ...
  6. >>> outside
  7. [['r', 'n', 'n', 'd'], ['r', 'n', 'n', 'd'], ['r', 'n', 'n', 'd'], ['r', 'n', 'n', 'd']]
  8. >>> cipher
  9. 'aauancvlrerurnndltmeaeepbytusticeatnpmeyiicgogorchsrsocnntiiimihaoofpagsivttpsitlbolrotoex'
Add Comment
Please, Sign In to add comment