add
Calculate the sum of a list of positive or negative numbers, including fractions, with 64-bit floating point precision. Input numbers as a list (e.g., [1, 2, 3]) to receive the accurate total.
Instructions
Adds a list of positive and/or negative numbers with 64 bit floating point precision and returns a 64 bit float. You need to provide them in the format of a list. For example, [1, 2, 3] would return 6.0. You can also use fractions if you want to, like [1/2, 1/3, 1/4].
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numbers | Yes |