str | |
ACTION: |
returns string representation of number
|
USE: |
String=str(value)
|
EXAMPLE: |
s=str(-1.23456) ' result: -1.23456 s=str(-1.23456,3) ' result: -1.235 |
REMARKS: |
rounding is automatically applied before decimal places are truncated. |
RELATED: |
hex
val
|