This is the ninth iteration of the Ribboned Cable project.
#!/usr/bin/env python import random # Randomly generate a cable with 9 ribbons ribbons = [random.randint(1,10) for i in range(9)] print ribbons