Explore Library
Code QuizBeginner

String Concatenation

Find the mistake when joining a string and a number.

Codepython
age = 25
print("I am " + age + " years old")

What is the bug in this code?