user variables

U

user

Sorry this must be really trivial, but I am new to Python...
suppose I defined
a=5
b=7
c=9

is there a command like

usr_vars()

which would show

a=5
b=7
c=9

????

I tried globals(), locals() and vars(), but they all mix my user-defined
variables with system ones... clues? ideas?

thanks in advance,

Pier
 
J

John Hunter

user> I tried globals(), locals() and vars(), but they all mix my
user> user-defined variables with system ones... clues? ideas?

These are the right functions to be thinking about. If I may be so
bold, perhaps you are not asking the right question. What is it you
need to do? You say you want to get the user defined variables. To
what end? Perhaps if you describe what it is you need to do, not how
you plan to do it, someone can offer an insightful solution.

Barring that, would it be helpful to remove the system/module vars by
first saving the keys of locals before user input, eg

from os import * # import a bunch of non user-defined names for testing

def diffkeys(k1, k2):
"return the keys in d1 that are not in d2"
k2d = dict( [(k,1) for k in k2] )
return [k for k in k1 if not k2d.has_key(k)]

def items_for_keys(keys, d):
"return a list of (k,v) pairs for given keys in dict d"
seen = dict( [(k,1) for k in keys] )
return [ (k,v) for k,v in d.items() if seen.has_key(k)]

base = locals().keys()
#now come the user vars
x = 1
y = 2
new = locals().keys()
new.remove('base') #a user var we aren't interested in
print items_for_keys(diffkeys(new, base), locals())


JDH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help with code 0
Help with my responsive home page 2
namespaces, scoping and variables 0
Tasks 1
Outputting signal values to terminal Within Character Array 0
C++ code generation 0
Lowest Value in List 5
ChatBot 4

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top