a.py looks like this:
user = '0'
xml = '<int>%s</int>'
What I'm trying to do is have it so I can use a second script, b.py like this:
import a
a.user = '4343'
print a.xml
Is this possible? Because I haven't been able to do it. I always get the first variable in the other script. I would rather hold the XML in the second script, because it's so long and makes scrolling through code annoying.