Skip to content

Instantly share code, notes, and snippets.

View SykoWolfGhost's full-sized avatar

SykoWolfGhost

  • Joined Apr 25, 2026
View GitHub Profile
@SykoWolfGhost
SykoWolfGhost / giftCardGenerator.py
Created April 25, 2026 01:36 — forked from pilalouis/giftCardGenerator.py
A gift card generator. The script generates the specified number of gift card numbers for a particular company and stores them in a text file.
import random
from random import randint
import time
gentype = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
print("Hello To Multipe Gift Card Generator")
total = input("How Many Would You Like To Generate? ")
#Number To Generate
number = int(total)
file = (total + " Generated By Multipe Gift Card Generator.txt")
file2 = 'GiftCardsCodes.txt'