random string from a list python code example
Example 1: print random string from list python
import random
list = ["Item 1", "Item 2", "Item 3"] # List
item = random.choice(list) # Chooses from list
print(item) # Prints choice
# From stackoverflow
# Tried and tested method
Example 2: get random value from list c#
public List<T> GetRandomFromList<T>(List<T> passedList, int numberToChoose)
{
System.Random rnd = new System.Random();
List<T> chosenItems = new List<T>();
for (int i = 1; i <= numberToChoose; i++)
{
int index = rnd.Next(passedList.Count);
chosenItems.Add(passedList[index]);
}
return chosenItems;
}