Hi...
I've this:
random_name = ['Mohamed', 'Ahmed','Aboubakr']
print "1: %s 2: %s 3: %s" % (random_name[1], random_name[0], random_name[2])
I want to print all the three names but in random way,
as: some time: Mohamed, Ahmed, Aboubaker
and some time: Mohamed, Aboubaker, Ahmed
and some time: Aboubaker, Ahmed, Mohamed
and some time ...
I used random and it doesn't work correctely !!