I'm testing the random module by creating a CCGen (not to use illegally, just cause it was the first idea I got). I don't know how I cant print 2 numbers attached (like printing 589903 and 3956371942 all together --> 5899033956371942).
This is the script:
import random
a = print ("")
x = random.randint (1000000000, 9999999999)
ccv = random.randint (100, 999)
month = random.randint (1, 12)
year = random.randint (2018, 2023)
print (a)
bin1 = input ("Please insert your BIN: ")
number = input ("Amount of CCs to generate: ")
for ccs in range(number):
print bin1
My problem is in the end, thanks.