AttributeError: 'builtin_function_or_method' object has no ...
stackoverflow.com › questions › 63537627Aug 22, 2020 · Show activity on this post. 'builtin_function_or_method' object has no attribute 'x'. usually means you forgot to add () to a function call, for example. >>> 'thing'.upper.replace ("H", "") #WRONG Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'builtin_function_or_method' object has no attribute 'replace' >>> "thing".upper ().replace ("H", "") #RIGHT 'TING'.