Hi,

I'm new in python development (NEWBIE). While I was using Cheetah Templates I got a problem about accessing template variables.

I have an object like this (class Template):

Code:
>>> class A:
...  x = 1
...  y = 2
...  z = 3
But I'm just going to know the attributes names "on the fly". How can I set/get this attributes if I have just...