Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/E869120/math-algorithm-book
/ func2
Function
func2
codes/python/Code_2_03_1.py:6–9 ·
view source on GitHub ↗
(pos)
Source
from the content-addressed store, hash-verified
4
return
2021
5
6
def
func2(pos):
7
global cnt
# グローバル変数 cnt を関数の内部で使う
8
cnt += 1
9
return
cnt + pos
10
11
print(func1())
# 「2021」と出力
12
print(func2(500))
# 「1501」と出力
Callers
1
Code_2_03_1.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected