The <mult> block is equivalent to the “*” operator in Python; it allows you to either:
• Multiply “a” by “b”
• Repeat a sequence (strings, lists, or tuples)
See the Python documentation for more details.
•« a » : The default value is 1 (type: int)
•« b » : The default value is 1 (type: int)
•« out » : Its type depends on the type of the inputs
If one of the inputs is of type int or float, the other input must also be of one of these two types.
If the input “a” is of type “string,” “b” must be of type int
If the input “a” is of type “list,” “b” must be of type int
If the input “a” is of type “tuple,” “b” must be of type int