1
我有一個這樣的文件:隨機子採樣線在一個文件
Tree 5
Jaguar 9
Cat 23
Monkey 12
Gorilla 67
可以隨機二次採樣這些線的3? 例如:
Jaguar 9
Gorilla 67
Tree 5
或
Monkey 12
Tree 5
Cat 23
等?
我有一個這樣的文件:隨機子採樣線在一個文件
Tree 5
Jaguar 9
Cat 23
Monkey 12
Gorilla 67
可以隨機二次採樣這些線的3? 例如:
Jaguar 9
Gorilla 67
Tree 5
或
Monkey 12
Tree 5
Cat 23
等?
import random
random.sample(open('foo.txt', 'r').readlines(), 3)