Python Random Liste

import random

liste = ["world, HELLO !", "hello world !"]

N = random.choice(liste)

print(N)
ADRIXYN