Example: Arithmetic operators

For these examples, tag_1 = 5 and tag_2 = 7.
tag_1 + tag_2
returns a value of 12
tag_1 * tag_2
returns a value of 35
tag_1 - tag_2
returns a value of -2
tag_1 / tag_2
returns a value of 0.71
tag_2 MOD tag_1
returns a value of 2
tag_1 ** tag_2
returns a value of 78125
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal