how to random shuffle lines in python code example
Example 1: python randomize list
import random
random.shuffle(list)
Example 2: shuffle text lines python
import random
with open('the_file','r') as source:
data = [ (random.random(), line) for line in source ]
data.sort()
with open('another_file','w') as target:
for _, line in data:
target.write( line )