This is RE(regular expression) basic program in python.
The idea came to me while i was working on a school assignment.
All it dose is that it creats from the input a list of numbers.
example:
hfag4g2g5lb6b2 -> re scanner - > output: [4,2,51,6,2]
- the program scanns for all number within the input and creates a list out of them. It is changeable to file I/O.All it dose is that it creats from the input a list of numbers.
example:
hfag4g2g5lb6b2 -> re scanner - > output: [4,2,51,6,2]
CODE:
import re
def listC():
"""RE input scanner"""
inp =raw_input('insert the string/list of numbers: ')
L = re.findall(r'\d+', inp)
l=[]
for i in range(len(L)):
l.append(int(L[i]))
def bbSort(l):
"""bassic uble sort algorithm implemented in python"""
sw = True
while sw:
sw = False
for i in range(len(l)-1):
if l[i] > l[i+1]:
l[i], l[i+1] = l[i+1], l[i]
sw = True
print l
bbSort(l)