in PYTHON
i have one list
and i want to make from it a multiple lists, for every item i want him to create a list with the other items
my initial list :
cities = ['Chevalley', 'A.Gharmoul 1', 'El Madania']
then i want the output to be :
[
['Chevalley', 'A.Gharmoul 1'],
['Chevalley','El Madania'],
['A.Gharmoul 1', 'El Madania']
]