Skip to content

Instantly share code, notes, and snippets.

@Tjamiet
Tjamiet / giftCardGenerator.py
Created April 26, 2025 16:23 — 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'