summaryrefslogtreecommitdiffstats
path: root/random/string to list.py
blob: 1179961a1d69754aec1e3ba83b32aed49382df28 (plain)
1
2
3
4
5
6
7
8
9
10
11
import random

test = "123\nabc\nxD"

l = test.split("\n")

x = random.choice(l)

print(x)

print(l)