变量不会在Python脚本之间传递

时间:2017-05-05 05:45:08

标签: python

由于某种原因,我无法将变量从一个Python文件传递到另一个Python文件。请参阅以下文件。

pullgps.py

from lenny1 import * 
import time

while (1):

  print lenny1.lat
  print lenny1.lon
  print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
  time.sleep(6)

lenny1.py

import gps

# Listen on port 2947 (gpsd) of localhost
session = gps.gps("localhost", "2947")
session.stream(gps.WATCH_ENABLE | gps.WATCH_NEWSTYLE)

while True:
    try:
        report = session.next()
        # Wait for a 'TPV' report and display the current time
        # To see all report data, uncomment the line below
        # print report
        if report['class'] == 'TPV':
             if hasattr(report, 'lat'):
                  lat = report.lat ### export to pullgps
             if hasattr(report, 'lon'):
                  lon = report.lon ### export to pullgps
    except KeyError:
        pass
    except KeyboardInterrupt:
        quit()
    except StopIteration:
        session = None
        print "GPSD has terminated"
当我打印lenny.pyreport.lon时,

report.lon可以正常工作。只是无法将变量导出到pullgps.py。它应该很简单,但由于某种原因,变量不会通过。谢谢!

1 个答案:

答案 0 :(得分:0)

您正在使用from lenny1 import *将lenny1.py中的所有内容导入全局命名空间。不仅如此,你实际上在第一次导入时运行lenny1.py中的所有内容,其中包含一个可能阻塞的while循环。这是非常糟糕的代码实践。但是,我认为您遇到的问题是在使用已加星标的导入时引用lenny1.lonlenny1.lat。只需打印lonlat,如果循环终止,它原则上应该“正常工作”。