python文件中可以包含任何数据内容-如何从单独的文件将数据结构(例如dict)导入或包含到Python文件中...

I know I can include Python code from a common file using import MyModuleName - but how do I go about importing just a dict?

The problem I"m trying to solve is I have a dict that needs to be in a file in an editable location, while the actual script is in another file. The dict might also be edited by hand, by a non-programmer.

script.py

airportName = "BRISTOL"

myAirportCode = airportCode[airportName]

myDict.py

airportCode = {"ABERDEEN": "ABZ", "BELFAST INTERNATIONAL": "BFS", "BIRMINGHAM INTERNATIONAL": "BHX", "BIRMINGHAM INTL": "BHX", "BOURNMOUTH": "BOH", "BRISTOL": "BRS"}

How do I access the airportCode dict from within script.py?

解决方案

Just import it

import script

print script.airportCode

or, better

from script import airportCode

print airportCode

Just be careful to put both scripts on the same directory (or make a python package, a subdir with __init__.py file; or put the path to script.py on the PYTHONPATH; but these are "advanced options", just put it on the same directory and it"ll be fine).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值