iNTERFACEWARE Products Manual > Learning Center > Learning Python > Working With Values and Variables > Arithmetic Operations > Arithmetic Operators and Strings |
|
Looking for Iguana v.5 or v.6? Learn More or see the Help Center.
Python allows you to use + and * with strings. When used with strings, + joins two strings together:
The * operation specifies multiple copies of a string. For example:
As with numbers, * is always performed before +, unless parentheses are used to specify the order. |