1Graphical interface

 

2Function

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.

3Inputs

4Output

5Types

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