I know of only two simple ways to split a string and add into tuple
import re
1. tuple(map(lambda i: i, re.findall('[\d]{2}', '012345'))) # ('01', '23', '45')
2. tuple(i for i in re.findall('[\d]{2}', '012345')) # ('01', '23', '45')
Is there other simple ways?
I’d go for
or
if you really want a tuple.