- Python
Python P0400怎样写
- 2022-10-8 21:49:34 @
def square(x,y,l):
jump(x,y)
angle =90
i =0
while i < 4:
forward(l)
right(angle)
i=i+1
square(100, 100, 100)
对吗?不对的话求讲解。
6 条评论
-
冲榜模式 (马骁楠) LV 7 @ 2022-11-13 13:50:03已修改
我这样写的:
from wonderLang import * def square(x,y): angle = 90 i = 0 while i < 4: forward(x) right(y) i = i + 1 square(100,90)
-
2022-10-29 19:36:34@
函数调用应为(0,0,100)
-
2022-10-29 19:31:00@
我才学两天
-
2022-10-27 12:43:38@
!
-
2022-10-27 12:42:47@
......
-
2022-10-9 19:52:33@
看看有没有AC
- 1