You are not logged in.
Hi, i have a doubt.
For example:
i have a *.py file that contains:
a = 1
b = 2
c = 3
and i want to import this variables into another script, so, for the new script, a = 1, b = 2, etc
Is there any way?
OS -----> Arch Linux DE -----> KDE4
CPU ---> 2.66GHz RAM ---> 512 MB
SWAP -> 2 G / -------> 10 G
/home -> 50 G /boot ---> 64 MB
Offline
from firstscript import a,b,c
or from firstscript import *, but don't do that.
Offline