from icons import Star
colorList = ("navy", "red")
verticalPos = (20, 30, 40, 50, 60, 70, 80, 90, 100)
loopList = range(7)

for i in loopList:
    rectangle = Rectangle (x=50, color=colorList[1], y=verticalPos[i], width=90, height=5)
    rectangle = Rectangle(x=26.5, y=33, height= 31.2, width=43, color="navy")
 
horizontalPos = (8, 12, 16, 20, 24, 28, 32, 36, 40, 44)
y_Pos = (20, 25, 30, 35, 40, 45)
ylist = range(len(y_Pos))
loopList = range(len(horizontalPos))
for i in loopList:
    stars = Star(x=horizontalPos[i], y=y_Pos[0], width=3, height=3, color="white")
    stars = Star(x=horizontalPos[i], y=y_Pos[1], width=3, height=3, color="white")
    stars = Star(x=horizontalPos[i], y=y_Pos[2], width=3, height=3, color="white")
    stars = Star(x=horizontalPos[i], y=y_Pos[3], width=3, height=3, color="white")
    stars = Star(x=horizontalPos[i], y=y_Pos[4], width=3, height=3, color="white")
    stars = Star(x=horizontalPos[i], y=y_Pos[5], width=3, height=3, color="white")

USA FLAG

by lapura

Created 4 years, 8 months ago.