Look at the output -ordi-
fiss gisse hd uc tb oa z
Do you see some character are missing?
I dont know how BirdaoGwra want the output,here are a couple of way.
fissgiss is one word in this,some more work is neede to split that to.
Pickle is way to save and get same output back,look at this.
http://www.daniweb.com/forums/thread343685.html
l = [['fiss','giss'], ['e','h'], ['d','u'], ['c','t'], ['b','o'], ['a','z']]
with open('w.txt', 'w') as f:
f.writelines(''.join(i) + ' ' for i in l)
#--> fissgiss eh du ct bo az
#---------------------------------------#
l = [['fiss','giss'], ['e','h'], ['d','u'], ['c','t'], ['b','o'], ['a','z']]
with open('w.txt', 'w') as f:
f.writelines(''.join(i) + '\n' for i in l)
"""Output-->
fissgiss
eh
du
ct
bo
az
"""
Edit did see you post about output.
l = [['fiss','giss'], ['e','h'], ['d','u'], ['c','t'], ['b','o'], ['a','z']]
with open('w.txt', 'w') as f:
f.writelines(' '.join(i) + '\n' for i in l)
"""Output-->
fiss giss
e h
d u
c t
b o
a z
"""