상세 컨텐츠

본문 제목

전역변수

카테고리 없음

by bumychoi 2024. 7. 5. 16:08

본문

#전역변수

x=100
def test():
    return x *10

print(f'ex1 결과:{test()}')
print()
# 전역변수 예제 2

y=100
def test2():
    global y
    y *=10
    return y
print(f'ex2 결과:{test2()}')



 

 

ex1 결과:1000

ex2 결과:1000