python random liste

Solutions on MaxInterview for python random liste by the best coders in the world

showing results for - "python random liste"
Isabel
01 Jun 2019
1import random
2
3liste = ["world, HELLO !", "hello world !"]
4
5N = random.choice(liste)
6
7print(N)