|
Hi, I have the need to add rdfs labels and descriptions to individuals I have created with owlready2. For example, I have the following:
state_individual = State("Illinois")
and I need to add a label which is equivalent to:
<rdfs:label>Illinois</rdfs:label>
How do I add a label to this named individual?
|