Hi samuel,
may you write yourself a wrapper which similar to this:

>>> def ashow(**args):
...     for key in args:
...             print key,'=',args[key]
...
>>> c = 345.45
>>> ashow(c=c)
c = 345.45

instead of print key,'=',args[key]
one could write
return str(key) + '=' + str(args[key])

the following unfortunately does not work as one might expect at the
very first sight:

>>> def bshow(a):
...     ashow(a=a)
...
>>> bshow(c)
a = 345.45

Georg


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to