Skip to content

Instantly share code, notes, and snippets.

@diewland
Last active May 4, 2019 03:51
Show Gist options
  • Select an option

  • Save diewland/ad77e25247e816a249a436a399e7dba1 to your computer and use it in GitHub Desktop.

Select an option

Save diewland/ad77e25247e816a249a436a399e7dba1 to your computer and use it in GitHub Desktop.
Preview random 5 items from list
import random
rows = [ 1, 2, 3, ... ] # your list
print([ random.choice(rows) for i in range(5) ])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment