I have one list consisting of 10 questions. How do I choose 5 (max) at random and there can be no doubles - in python.
I have tried using:
from random import choice
strings = ['aa','bb','cc','dd','ee']
print(choice(strings))
But have no Idea how to choose 5 and have no doubles.