Product SiteDocumentation Site

4.7. Type Conversions

We have to do the type conversions manually. Like
 
float(string) -> float value
int(string) -> integer value
str(integer) or str(float) -> string representation 
>>> a = 8.126768
>>> str(a)
'8.126768'