I want to create below tripples using RDFLIB in python and add it to apache jena database. I am not exactly getting how can I create classes and peoperties using RDFLIB. Please let me know regarding this.
```
State a rdfs:Class .
:City a rdfs:Class .
:locatedIn a rdf:Property .
:capitalOf rdfs:subPropertyOf :locatedIn .
:capitalOf rdfs:domain :City .
:capitalOf rdfs:range :State .
```
and also for this
```
Example:UsedCarForSale RDF:type RDF:Class
Example:Price RDF:type RDFS:Property
Example:PastOwners RDF:Type RDFS:Property
```