这是我使用的代码:
from P4 import P4, P4Exception
mp = P4.Map()
这是我得到的错误:
mp = P4.Map() AttributeError: type object 'P4' has no attribute 'Map'
为什么?根据 P4Python 手册,此类方法应构造一个新的 Map 对象。
这是我使用的代码:
from P4 import P4, P4Exception
mp = P4.Map()
这是我得到的错误:
mp = P4.Map() AttributeError: type object 'P4' has no attribute 'Map'
为什么?根据 P4Python 手册,此类方法应构造一个新的 Map 对象。
因为你class P4
从P4.py
. Map 是 P4.py 的另一个类。见源代码:https ://github.com/rptb1/p4python/blob/master/P4.py
你应该试试这个:
import P4
mp = P4.Map()