You may want to check the nice documentation
http://owlready2.readthedocs.io/en/latest/class.html#creating-individualssomething like
classObj = myOnto.search(label="*classLabel")[0] # you may need to pick another element of the list
for ind in myList:
myInd = classObj(ind)
You can also store myInd somewhere for direct access, like in a dictionary for instance.
Hope this helps!