Python: Sending a variable to another script.
Posted
by Grenko
on Stack Overflow
See other posts from Stack Overflow
or by Grenko
Published on 2010-06-17T22:27:12Z
Indexed on
2010/06/17
22:33 UTC
Read the original article
Hit count: 142
python
I'm new to python and kind of been chucked in the deep end at work.
If i had a script which has creates a list such as below:
test = 'string'
l = []
for i in test:
l.append(i)
print l
How would i send that this to another python script?
© Stack Overflow or respective owner