save dictionary to a file without brackets.

Roman Vashkevich vashkevichrb at gmail.com
Thu Aug 9 16:22:57 EDT 2012


for key in dict:
    print key[0], key[1], dict[key]

10.08.2012, в 0:11, giuseppe.amatulli at gmail.com написал(а):

> 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




More information about the Python-list mailing list