Skip to content

Instantly share code, notes, and snippets.

@moulik-source
Created October 30, 2021 08:17
Show Gist options
  • Save moulik-source/142cf4fe8d43a670668b1371030237b8 to your computer and use it in GitHub Desktop.
Save moulik-source/142cf4fe8d43a670668b1371030237b8 to your computer and use it in GitHub Desktop.
random module
# import random
import random
# prints a random value from the list
list1 = [1, 2, 3, 4, 5, 6]
print(random.choice(list1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment