On Sat, Apr 26, 2014 at 1:11 PM, Andrew Konstantaras wrote:
> Can anyone point me in the direction to find this information? Any help is
> appreciated.
I'd recommend python-list rather than python-dev (the latter is for
the development *of* Python, rather than development *with* Python).
But to
I wrote the following code that works in Python 2.7 that takes the variables
passed to the function into a dictionary. The following call:
strA = 'a'
intA = 1
dctA = makeDict(strA, intA)
produces the following dictionary:
{'strA':'a', 'intA':1}
To access the names passed int