temp2 = "" for i in range(6): num = random.randrange(0,6) if num == 1 or num == 3 or num ==5: temp2 = temp2 + str(num) else: num2 =random.randrange(65,91) temp2 +=chr(num2) print(temp2)
temp2 = "" for i in range(6): num = random.randrange(0,6) if num == 1 or num == 3 or num ==5: temp2 = temp2 + str(num) else: num2 =random.randrange(65,91) temp2 +=chr(num2) print(temp2)