Skip to content

Instantly share code, notes, and snippets.

@yarliganfatih
Created June 5, 2022 11:29
Show Gist options
  • Save yarliganfatih/8a629953038ca4e4139c15b2fbfc9cd7 to your computer and use it in GitHub Desktop.
Save yarliganfatih/8a629953038ca4e4139c15b2fbfc9cd7 to your computer and use it in GitHub Desktop.
import random
#regular random
print("".join(["s","j"]*10))
#random random
print("".join([random.choice(["s","j"]) for i in range(20)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment