作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是Python初学者。我正在使用owlready研究本体。我已在 PyCharm IDE 上安装了 owlready 库,但在 python 代码中导入 owlready 时出现问题。我已经尝试过 from owlready import *
就像文档中一样,但它总是给我:
Traceback (most recent call last):
File "C:/Users/siekoo/OneDrive/Development/python/NER/onto_start.py", line 1, in <module>
from owlready import *
File "C:\winpython\python-2.7.10.amd64\lib\site-packages\owlready\__init__.py", line 85
def __init__(self, *Entities, ontology = None):
^
SyntaxError: invalid syntax
最佳答案
看起来 Owlready 适用于 Python 3,而您使用的是 Python 2。请更改您的 Python 版本以使其正常工作。
无效语法错误是由于新的 Python 3 参数列表造成的,请参阅:https://docs.python.org/3/tutorial/controlflow.html#arbitrary-argument-lists
关于python - 无法将 Owlready 库导入 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39719119/
我是Python初学者。我正在使用owlready研究本体。我已在 PyCharm IDE 上安装了 owlready 库,但在 python 代码中导入 owlready 时出现问题。我已经尝试过
我正在使用 owlready 来丰富具有属性限制的本体。正如我们在 owlready 文档中看到的,可以定义属性 https://owlready2.readthedocs.io/en/latest/
我是一名优秀的程序员,十分优秀!