由于某种原因,我无法将变量从一个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.py
和report.lon
时, report.lon
可以正常工作。只是无法将变量导出到pullgps.py
。它应该很简单,但由于某种原因,变量不会通过。谢谢!
答案 0 :(得分:0)
您正在使用from lenny1 import *
将lenny1.py中的所有内容导入全局命名空间。不仅如此,你实际上在第一次导入时运行lenny1.py中的所有内容,其中包含一个可能阻塞的while循环。这是非常糟糕的代码实践。但是,我认为您遇到的问题是在使用已加星标的导入时引用lenny1.lon
和lenny1.lat
。只需打印lon
和lat
,如果循环终止,它原则上应该“正常工作”。