Answers for "split a text containing letters and numbers python"

2

python how to split a number

number = "12345"
result = []
for digit in number:
    result.append(digit)
print(result)
# result is ['1', '2', '3', '4', '5']
Posted by: Guest on October-24-2021
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 "split a text containing letters and numbers python"

Python Answers by Framework

Browse Popular Code Answers by Language