+ 5
Python - TypeError 'str' object is not callable
Apparently this error arises when we try to call a string as a function. def decor(func): x= "=" return x + func() + x @decor def text(): return "zzz" print(text()) From my understanding @decor means text = decor(text). Does this mean that print(text()) is passing ' return "zzz" ' to the decor function? Is this where the type error arise?
12 Respostas
+ 12
Decorators should return a function that wraps around the passed function, in your case, instead of returning a function you're returning a string surrounded by equal signs and since you can't call a string it raise an error, you can print it to check the value:
print(text) # outputs =zzz=
Or you can return a wrapper function, check this out:
https://code.sololearn.com/cxJ124LX3E1o/?ref=app
+ 6
Namit Jain but then why do we use decorator?
decor(text) would do it too.
+ 5
Oma Falk yaa đđ
Just telling him that what's the reason of the error đ
Actually, many a times I find decorators pointless (sorry, that's my opinion)
+ 5
Bagon Namit Jain
so just to clarify for me
@decor
func()
changes the function func to a variable that holds decor(func)?
+ 4
Try this!
def decor(func):
x= "="
return x + func() + x
@decor
def text():
return "zzz"
print(text)
# The brackets have been removed
Output: =zzz=
This happens because,
As you interpreted correctly
test becomes same as decor(text)
So just printing text means you are calling the function decor that takes input as the actual text function!
And now text = "=zzz="
You cannot call a str đ
+ 3
Bagon I guess there is no need of returning function đ
See my answer âșïž
Returning function is done so that you can use the text() but the same thing can be done without returning a function and by: print(text)
+ 3
Bagon Yaa â
đ
+ 3
Oma Falk Yaa đ
It turns to a function if we use a wrapper else by @Solus's method it turns to a string/int etc
+ 2
Bagon thanks pre-evolved Shelgon!
Will remember to use the wrapper function onward.
+ 2
Namit Jain yeah I find them pretty useless as well, almost everytime it's easier and better to just modify the function or add a helper one. Timing performance is the best use of decorators I've seen so far
+ 1
Namit Jain yeah, noticed that too but in general, decorators purpose is to modify other function without actually touching it, so most of the times decorator just returns a function which you can call wherever and whenever you want.
Not necessary in this case but pretty important in general, so I had to mention it. đ
- 4
Try to use variable and assign it to text() then this variable
x = text()
print(x)