Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

The conversational Assignment tab lets the user create variables and assign values to variables.

Available operators include:

=

Assign value of right side of expression to left side operand

x = y + z 

+=

Add and Assign: Add right side operand with left side operand and then assign to left operand

a += b   

-=

Subtract AND: Subtract right operand from left operand and then assign to left operand: True if both operands are equal

a -= b  

*=

Multiply AND: Multiply right operand with left operand and then assign to left operand

a *= b     

/=

Divide AND: Divide left operand with right operand and then assign to left operand

a /= b

%=

Modulus AND: Takes modulus using left and right operands and assign result to left operand

a %= b  

//=

Divide(floor) AND: Divide left operand with right operand and then assign the value(floor) to left operand

a //= b   

**=



Exponent AND: Calculate exponent(raise power) value using operands and assign value to left operand

a **= b  

  • No labels