This file contains hidden or 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 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' |