crus4

logo

What Arithmetic Operators Cannot Be Used With Strings in Python

What Arithmetic Operators Cannot Be Used With Strings in Python Arithmetic Operators such as Subtraction (-), multiplication(*), division (/) and exponentiation (**)cannot be used with strings in Python. Instead these operators are only used to perform mathematical operations on numerical values (integers and floats). You can only use the addition operator (+) to concatenate the […]