python random liste code example
Example: python random liste
import random
liste = ["world, HELLO !", "hello world !"]
N = random.choice(liste)
print(N)
import random
liste = ["world, HELLO !", "hello world !"]
N = random.choice(liste)
print(N)