Explore Library
Code QuizBeginner

Type Conversion / Casting

Find the casting error in this conversion.

Codepython
value = "12.5"
number = int(value)
print(number)

What is the bug in this code?