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.0stringToInt("42")
=> 42stringToInt("42")
=> 42intToString(42)
=> "42"intToBool(42)
=> trueintToBool(0)
=> falsefloatToString(42.6)
=> "42.6"Last updated
Was this helpful?