mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-11 08:07:07 +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)]))))
|