Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Useful Converting | Bring All the Topics Together
Data Types in Python

book
Useful Converting

The int() function can be useful if you're working with numerical data. For instance, imagine that we have a lot of numbers that need to be modified, but all of them have a string data type. This code leads to an error:

value = "123"
new_value = value + 10

print(new_value)
1234
value = "123" new_value = value + 10 print(new_value)
copy

Here, Python tries to concatenate the strings, but indeed its functionality doesn't allow it to do so, since 10 is related to the integer data type (concatenation can be applied only to strings).

To correctly sum these numbers, you should initially transform the string into an integer using int() function:

value = "123"
new_value = int(value) + 10

print(new_value)
1234
value = "123" new_value = int(value) + 10 print(new_value)
copy
Task

Swipe to start coding

Hence, your objective in this context is to address this issue. Consider a scenario where you have three price values, but an individual lacks the proficiency to manipulate data in a numerical format. Consequently, you are required to handle prices associated with the string data type.

  1. Increase price1 by 15 and store the result in new_price1
  2. Increase price2 by 780 and store the result in new_price2
  3. Decrease price3 by 90 and store the result in new_price3

Solution

price1 = "456"
price2 = "50"
price3 = "830"

# Increase `price1` variable by 15
new_price1 = int(price1) + 15
# Increase `price2` variable by 780
new_price2 = int(price2) + 780
# Decrease `price3` variable by 90
new_price3 = int(price3) - 90

print("Variable new_price1 equals:", new_price1)
print("Variable new_price2 equals:", new_price2)
print("Variable new_price3 equals:", new_price3)

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 4. Chapter 2
price1 = "456"
price2 = "50"
price3 = "830"

# Increase `price1` variable by 15
new_price1 = ___(price1) + ___
# Increase `price2` variable by 780
new_price2 = ___ + ___
# Decrease `price3` variable by 90
new_price3 = ___

print("Variable new_price1 equals:", new_price1)
print("Variable new_price2 equals:", new_price2)
print("Variable new_price3 equals:", new_price3)

Ask AI

expand
ChatGPT

Ask anything or try one of the suggested questions to begin our chat

We use cookies to make your experience better!
some-alt