When I run my python script I get the following warning
DeprecationWarning: the sets module is deprecated
How do I fix this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Stop using the
setsmodule, or switch to an older version of python where it’s not deprecated.According to pep-004,
setsis deprecated as of v2.6, replaced by the built-insetandfrozensettypes.