I want to adjust the opacity of the lines drawn by the pen in turtle to 50% but can't seem to find any solution. This link shows no solutions.
It seems like we can't use rgba as the color choice in this library? If so, any library that is recommended to use?
import turtle
t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor('black')
t.pencolor('white')
t.speed('fastest')
t.pensize(5)
for i in range (100):
t.forward(500)
t.left(125)
turtle.done()