How do I perform an arithmetical average operation
This example demonstrates performing arithmetical average on the list of numeric values.
In the solution below, you will see that average of two numbers is calculated using the "average" command and stored into a variable.
Solution:
# | Command | Target | Value |
---|---|---|---|
Get the average of two numbers | |||
1 | average | 100,400 | result |
Tips, Tricks, Gotchas & Best Practices:
- The list of numeric values to be multiplied should be separated by a comma(,).
- As a best practice, it is always advisable to define the variable names without any spaces and if you want to differentiate the words, use underscores.