<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/pt/courses/python-intermediate-en-rCQKw/2/4?curriculum_id=4f89dab3d788890003000096#
<In what way does your code behave incorrectly? Include ALL error messages.>
I made a new variable to return, but it says i didn’t
<What do you expect to happen instead?>
i expected lists_ to equal everything in lists, making everything in lists to make a new one
Replace this line with your code.
def remove_duplicates(lists):
lists_ =
for i in lists:
if i == i:
lists.remove(i)
lists_ = lists[0:]
return lists_
<do not remove the three backticks above>