Random string value : Random « Development « Python






Random string value

 

import random

print random.choice(['A', 'B', 'C'])
print random.choice(['A', 'B', 'C'])

   
  








Related examples in the same category

1.Demonstrates random number generation
2.Random integers produced by randrange.Random integers produced by randrange.
3.random number generationrandom number generation
4.Random Choice Random Choice
5.Sampling without replacementSampling without replacement
6.Random int value
7.Random floatRandom float
8.Demonstrates the range() functionDemonstrates the range() function
9.Random integer chosen from range(6)Random integer chosen from range(6)