Lists
myUniqueList = [] def add(x): myUniqueList.append(x) add(10) print(myUniqueList) Can anyone helo me create the code i dont understand English that good and the code above is how far i got and i dont know how to write the rest that it asks (i am learning the python from an website and the gave me this homework) Create a global variable called myUniqueList. It should be an empty list to start. Next, create a function that allows you to add things to that list. Anything that's passed to this function should get added to myUniqueList, unless its value already exists in myUniqueList. If the value doesn't exist already, it should be added and the function should return True. If the value does exist, it should not be added, and the function should return False; Finally, add some code below your function that tests it out. It should add a few different elements, showcasing the different scenarios, and then finally it should print the value of myUniqueList to show that it worked.