Skip to content

Commit 7001ef1

Browse files
authored
Create 3.py
1 parent d6e3919 commit 7001ef1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

5/3.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
def recursive_function():
2+
print('재귀 함수를 호출합니다.')
3+
recursive_function()
4+
5+
recursive_function()

0 commit comments

Comments
 (0)