PythonPython - Sets5.0 Python - Loop SetsOn this page5.0 Python: Loop Sets 5.1 Loop Items You can loop through the set items by using a for loop: 5.1.1 Example Loop through the set, and print the values: thisset = {"apple", "banana", "cherry"}for x in thisset: print(x)