add helpers
This commit is contained in:
parent
d04a124987
commit
060ba0d890
8
my_helpers/fsa_description_helper.py
Normal file
8
my_helpers/fsa_description_helper.py
Normal file
@ -0,0 +1,8 @@
|
||||
import os
|
||||
alphabet = 'abcdefghijklmnopqrstuvwxyz '
|
||||
with open(os.path.join(os.path.dirname(__file__), 'fsa_description.arg'), 'w') as file:
|
||||
for c in alphabet:
|
||||
for i in range(0, 6):
|
||||
file.write(f'{i}\t0\t{c}\n')
|
||||
file.write(f'6\t6\t{c}\n')
|
||||
file.write('6')
|
Loading…
Reference in New Issue
Block a user