typeerror: bad operand type for unary +: ‘str’ [SOLVED]

In this, tutorial, we will discuss the solutions on how to solve the bad operand type for unary +: str and Why the error occurs.

Before we proceed to the solutions to solve the error, we will know first why the error occurs.

Why the error bad operand type for unary +: ‘str’

The TypeError: bad operand type for unary +: ‘str’ occurs when you prepend the unary plus operator (+) on a string value. The unary plus operator(+) shows a positive value, and it is suggested to only be used numerical data types such as int and float values.

For an example of an error occurs:

a = "19"
b = +a

print(b)

Output:

C:\Users\Dell\PycharmProjects\pythonProject\venv\Scripts\python.exe C:\Users\Dell\PycharmProjects\pythonProject\main.py
Traceback (most recent call last):
File “C:\Users\Dell\PycharmProjects\pythonProject\main.py”, line 2, in
y = +x
TypeError: bad operand type for unary +: ‘str’

In the code example, we prepend the unary + operator to a string that isn’t correct, so that’s why it throws TypeError because it doesn’t have a meaning to prepend the + operator on a string value.

Also read: typeerror: descriptors cannot not be created directly [SOLVED]

Some of the common causes include

  • You are trying to use the unary + operator with a string value.
  • You are using a variable that contains a string value in a mathematical expression.
  • You are using the wrong data type in your code.

How to solve the typeerror: bad operand type for unary +: str?

To solve the TypeError: bad operand type for unary +: ‘str’ error in Python, we will convert the string to a numerical value by using the int() or float() function.

For example:

x = "50"

x_int = int(x)

y = +x_int

print(y)

Output:

C:\Users\Dell\PycharmProjects\pythonProject\venv\Scripts\python.exe C:\Users\Dell\PycharmProjects\pythonProject\main.py
50

In this code example, we converted the string “50” to an integer by using the int() function and then we used the unary plus operator(+) on the integer to display the positive value.

The unary + operator in Python displays the positive value of a numeric expression.

The unary + operator will execute no actual mathematical operation yet it will return the numeric value.

The another solution to solve this error is that we will be using the concatenate + operator on Strings in Python.

For concatenating strings in Python, we can use the + operator.

x = "50"
y = "61"

z = x + y

print(z)

Output:

C:\Users\Dell\PycharmProjects\pythonProject\venv\Scripts\python.exe C:\Users\Dell\PycharmProjects\pythonProject\main.py
5061

As you can see that we are using the unary plus operator(+) on strings, yet it doesn’t give you the TypeError because we’re using it to concatenate a string; we aren’t covering that operator on a string.

Concatenating a string and prepending the unary plus operator is peculiar in programming.

If you’re trying to add two numeric values and getting the TypeError, That means one of those values could be a string or at least perform like a string. Make sure that both values are numeric before performing the addition.

FAQs

Can the “typeerror: bad operand type for unary +: ‘str'” error message occur in any programming language?

No, the “typeerror: bad operand type for unary +: ‘str'” error message is specific to Python.

What is Unary + Operator?

The Unary + operator is used to convert a value into a positive number. For example, if you have a variable with a negative value, you can use the Unary + operator to convert it into a positive value.

Conclusion

In conclusion, this article will be able to help you to resolve the error typeerror: bad operand type for unary +: ‘str’ you may encounter while working in python programming.

Leave a Comment