Screen Link: https://app.dataquest.io/m/200/variables-and-data-types/10/string-operations
Your Code:""“facebook = “Facebook’s rating is”
fb_rating = 3.5
fb_rating_str = str (fb_rating)
fb = (facebook +” " + fb_rating_str)
print (fb)"""
What I expected to happen:
for the machine to print: Facebook’s rating is 3.5
What actually happened: ```TypeErrorTraceback (most recent call last)
in ()
3 fb_rating_str = str (fb_rating)
4 fb = (facebook +" " + fb_rating_str)
----> 5 print (fb)
TypeError: ‘int’ object is not callable```
Other details: it is going on already in the past 6-7 screens