1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | count = 1 s = 0 while count <= 10: s = s + count count = count + 1 print("ÇÕ°è´Â", s) import turtle t = turtle.Turtle() i = 0 while i < 4: t.forward(100) t.right(90) i = i + 1 | cs |