Skip to content

Instantly share code, notes, and snippets.

@usernam121
Created August 26, 2022 03:01
Show Gist options
  • Save usernam121/9f64e1f73248372d60d26d513b02deb2 to your computer and use it in GitHub Desktop.
Save usernam121/9f64e1f73248372d60d26d513b02deb2 to your computer and use it in GitHub Desktop.
import random
from random import randint
import sys
import re
data = sys.stdin.readlines()
list = ["!",".","*",".","*","&"]
for row in data:
num = randint(1,999)
num = str(num)
ran = random.choice(list)
row = re.sub("\n", "", row)
new_word = ran+row+num
print(new_word[1:]+new_word[0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment