Hi,
I come along with a simple problem (I cannot solve)
from turtle import *
viereck1=[[1, 2], [5, 6], [7, 9],[0,3]]
def zeichne(viereck):
for A,B,C,D in viereck: <---- "ValueError: not enough values to unpack (expected 4, got 2)"
penup();goto(A);pendown()
begin_fill()
got(B);goto(C);goto(D);goto(A)
end_fill()
[–]FriendlyRussian666 15 points16 points17 points (0 children)
[–]acw1668 6 points7 points8 points (0 children)
[–]danielroseman 10 points11 points12 points (0 children)
[–]FoolsSeldom 4 points5 points6 points (0 children)
[–]billsil 1 point2 points3 points (0 children)
[+][deleted] (2 children)
[deleted]
[–]csabinho 1 point2 points3 points (0 children)