Hi,
I have a dict() unique
like this
{(4, 5): 1, (5, 4): 1, (4, 4): 2, (2, 3): 1, (4, 3): 2}
and i want to print to a file without the brackets comas and semicolon in order
to obtain something like this?
4 5 1
5 4 1
4 4 2
2 3 1
4 3 2
Any ideas?
Thanks in advance
Giuseppe
--
http://mail.python.org/mailman/listinfo/python-list
- save dictionary to a file without brackets. giuseppe . amatulli
- Re: save dictionary to a file without brackets. Roman Vashkevich
- Re: save dictionary to a file without bracket... Tim Chase
- Re: save dictionary to a file without bra... Roman Vashkevich
- Re: save dictionary to a file without... Mark Lawrence
- Re: save dictionary to a file without... Tim Chase
- Re: save dictionary to a file wi... Roman Vashkevich
- Re: save dictionary to a fil... Dave Angel
- Re: save dictionary to a... Roman Vashkevich
- Re: save dictionary to a fil... Chris Kaynor
- Re: save dictionary to a... Chris Kaynor
