total=0
def func():
for i in range(n+1):
total = total + i
return total
n = int(input())
func()
방법 1) global 이 아닌 local 변수로 명시해주었다.
def func():
total=0
for i in range(n+1):
total = total + i
return total
n = int(input())
func()
방법2) global 변수라고 명시해주었다.
total=0
def func():
for i in range(n+1):
global total
total = total + i
return total
n = int(input())
func()