23 Aug
2004
23 Aug
'04
5:01 p.m.
----- Original Message ----- From: "Garito" <garito@sistes.net>
I try these code in a Python Script:
A = dict() A['Example'] = 1
return A.update({'DoesItWorks': 'Perhaps'})
In the python interpreter it works fine but in the python script returns None
Can anyone reproduce the problem?
In a python script try: A = {} A['example'] = 1 A.update({'DoesItWork' : 'yes'}) return A HTH Jonathan