mirror of
https://github.com/status-im/status-react.git
synced 2025-02-09 09:34:55 +00:00
7 lines
203 B
Python
7 lines
203 B
Python
import itertools
|
|
|
|
|
|
def passpharse_with_spaces(passphrase):
|
|
phrase_list = passphrase.split()
|
|
return ''.join(list(itertools.chain.from_iterable(zip(phrase_list, [' ' * i for i in range(1, 13)]))))
|