Hi,
Owlready uses plain Python types to represent basic datatype, so str is the datatype.
If you want the IRI of the datatype, it is more complex... Owlready maintain a dictionary mapping Python types to IRI, but the IRI are abbreviated as integer. Thus you need to unabbreviate them. Here is an exemple :
>>> default_world._unabbreviate(owlready2.base._universal_datatype_2_abbrev[str])
'
http://www.w3.org/2001/XMLSchema#string'Jiba