Python には、2 つの異なるリストからランダムに値を取得できる組み込みメソッドがありますか?
元:
listOne = ['Blue', 'Red', 'Green']
listTwo = [1, 2, 3]
# I want to get the result:
# ('Blue',3),('Red',2),('Green',1)
# or ('Blue',2),('Red',3),('Green',1)
# or ('Blue',1),('Red',2),('Green',3)
# and so on...how can I use a method get this result in a random way?