sorting
Carel Fellinger
cfelling at iae.nl
Thu Feb 28 11:36:00 EST 2002
More information about the Python-list mailing list
Thu Feb 28 11:36:00 EST 2002
- Previous message (by thread): Pointers for solving windows GUI problem.
- Next message (by thread): sorting
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Carel Fellinger <cfelling at iae.nl> wrote: ... > or to get them all > >>> for x in count: > ... print "the number %r occured %d time(s)" % (78, count[78])) blaim it on stupid cut&paste, but this should read: ... print "the number %r occured %d time(s)" % (x, count[x])) -- groetjes, carel
- Previous message (by thread): Pointers for solving windows GUI problem.
- Next message (by thread): sorting
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list