Build a Report Card Printer - Step 10

Tell us what’s happening:

i dont understand what to do next here kindly explain for me

Your code so far

name = 'Alice'
print(name, type(name))

is_student = True
print(is_student, type(is_student))

age = 20
print(age, type(age))

score = 80.5
print(isinstance(score, float))
# User Editable Region
print (80.5, type(80.5))
# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36

Challenge Information:

Build a Report Card Printer - Step 10

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-report-card-printer/694648acde178bb8202d9517.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @anniechahenza,

We store a value in a variable so that we can use the variable many places in our code and if we need to change it, we only need to change it in one place.

Please use your variable in the print function.

Happy coding