Answers for "how to seprate integer and characters from a string in python"

1

python dividing strings by amount of letters

>>> line = '1234567890'
>>> n = 2
>>> [line[i:i+n] for i in range(0, len(line), n)]
['12', '34', '56', '78', '90']
Posted by: Guest on June-24-2021

Code answers related to "how to seprate integer and characters from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language