comment diviser la chaîne python en n nombres également

import textwrap
print(textwrap.wrap("123456789", 2))
#prints ['12', '34', '56', '78', '9']
S UZAIR