So I've been playing around with Python and testing it on other computers by using cx-freeze to turn my Python script into an exe.
Recently I learned how to use the Turtle module and used it in my script. I tested it my script and it worked perfectly but when I turned it into an executable it doesn't open.
# TURTLE TEST
import time
from turtle import *
pen1 = Pen()
title('ILLUMINATI')
pen1.screen.bgcolor('#FFFFFF')
pen1.color('#000000')
pen1.up()
pen1.goto(-100, 200)
pen1.down()
pen1.begin_fill()
for i in range(3):
pen1.fd(200)
pen1.left(360/3)
pen1.end_fill()
pen1.up()
pen1.goto(0, -100)
write("ILLUMINATI", False, align='center',font=('Times', 50, 'bold'))
done()