Skip to content

Commit a7733a1

Browse files
authored
Create main.py
0 parents  commit a7733a1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

main.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
import sys
3+
sys.setrecursionlimit(2000)
4+
# print(sys.getrecursionlimit())
5+
i = 0
6+
def greet():
7+
global i
8+
i+=1
9+
print('Hello', i)
10+
greet()
11+
greet()

0 commit comments

Comments
 (0)