반복의 다른 방법, 재귀를 연습해보겠습니다.
import turtle
t1 = turtle.Pen()
count = 0
def box1():
for i in range(4):
t1.fd(50)
t1.rt(90)
def run():
global count
box1()
t1.rt(90)
t1.pu()
t1.fd(70)
t1.lt(75)
t1.pd()
count = count + 1
if count <= 23:
run()
def main():
run()
main()
# 재귀 루프가 실행되는 조건과
# 재귀 루프를 빠져나오는 조건에 주의하세요.
'Programming > Python' 카테고리의 다른 글
Free IDE - Thonny (0) | 2024.09.08 |
---|---|
turtle.pencolor() 함수 (0) | 2023.12.10 |
[ L2P ] random Module (0) | 2023.09.10 |
[ L2P ] OnKeyPress() (0) | 2023.08.20 |
L2P 연습 : turtle.Screen.onclick() - 001 (0) | 2023.08.06 |