Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 584 Bytes

random.md

File metadata and controls

11 lines (6 loc) · 584 Bytes

random

The random module or random library allows one to generate random output. The module is useful for to choose a random element from a list, or number from a range, or between two potential values (like True or False).

Readings

  • For a thorough description of the random module, check out the official documentation.

Tutorials

  • For step-by-step demonstration of how to use random, check out this tutorial from Python For Beginners.