On 2/1/19 7:15 AM, [email protected] wrote:
Hello guys can you help me to solve problem when i compile proram got error like this "Instance of 'dict' has no 'replace' member[no member](67;14)".
Python dicts don't have a replace method.
It looks like you're trying to replace strings inside particular
dict entries; perhaps you meant something like this:
querystring["key"] =
querystring["key"].replace("placeholder", "value")
HTH,
Dan
--
https://mail.python.org/mailman/listinfo/python-list
