I am looking for hints how to format values in a Turtle RDF graph, rdflib for Python. Currently I get values of datatype double displayed in scientific notation:
-4.28322e-01 ; 5.175547e+01 ;
and what I need to achieve is
"-0.428322"^^xsd:double ; "51.75547"^^xsd:double ;
Tried normalize=False but still no result.
Thanks