- 论坛徽章:
- 26
|
如果可以你 改变下 期待的结果: [ ]可以- #!/usr/bin/python2
- # coding: utf-8
- def SAVE(FILE, VAR, SOMETHING):
- fh = open(FILE, 'aw')
- fh.write(VAR + ' = ')
- fh.write(str(SOMETHING))
- fh.write("\n")
- fh.close()
- l = ['qwe', 123]
- d = {'abc': 123, 'def': 456}
- l2 = [33, 44, 55, {'gg': 66}]
- SAVE('xyz.py', 'L1', l)
- SAVE('xyz.py', 'D1', d)
- SAVE('xyz.py', 'L2', l2)
复制代码 cat xyz.py
- L1 = ['qwe', 123]
- D1 = {'abc': 123, 'def': 456}
- L2 = [33, 44, 55, {'gg': 66}]
复制代码 load:- #!/usr/bin/python2
- # coding: utf-8
- import xyz as LIB
- print LIB.L1
- print LIB.D1
- print LIB.L2
复制代码 output- ['qwe', 123]
- {'abc': 123, 'def': 456}
- [33, 44, 55, {'gg': 66}]
复制代码 |
|