Internal Functions
Use Internal Functions
List
len(<list>)==> Return the number of element in the list given in argumentintToFloat(i: Int)==> Convert the int given in argument into a floatfloatToInt(f: Float)==> Convert the float given in argument into an intstringToInt(s: String)==> Convert the string given in argument into an int if one is foundintToString(i: Int)==> Convert the int given in argument into a stringintToBool(i: Int)==> Convert the int given in argument into a booleanfloatToString(f: Float)==> Convert the float given in argument into a string
Exemples:
len([1,2,3,4,5])
=> 5len([])
=> 0intToFloat(42)
=> 42.0Last updated
Was this helpful?