Skip to content

Instantly share code, notes, and snippets.

@izzygomez
Created November 9, 2022 06:28
Show Gist options
  • Save izzygomez/612b3d2aa72ef0db54f56163fdcd8bce to your computer and use it in GitHub Desktop.
Save izzygomez/612b3d2aa72ef0db54f56163fdcd8bce to your computer and use it in GitHub Desktop.
Shuffle 33 Numbers
import random as r
numbers = [*range(1,34)]
r.shuffle(numbers)
print(numbers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment