#!/usr/bin/python # Tuple with a list of OS's my_tuple = ('centos', 'ubuntu', 'fedora', 'windows', 'arch', 'freebsd') # Create a new list based off of the tuple, exclude 'windows' nix_os = [entry for entry in my_tuple if entry != 'windows'] print("The tuple is: ", my_tuple) print("The nix os list is: ", nix_os)