Created
August 26, 2022 03:01
-
-
Save usernam121/9f64e1f73248372d60d26d513b02deb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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