SeouliteLab

[Python/파이썬] 다른 파일의 변수 참조, 함수 호출하기 본문

프로그래밍

[Python/파이썬] 다른 파일의 변수 참조, 함수 호출하기

Seoulite Lab 2024. 3. 2. 12:50

파이썬에서는 다른 파일의 변수를 참조하고 함수를 호출하는 것이 가능합니다. 이를 통해 코드의 모듈화와 재사용성을 높일 수 있습니다.

1. 다른 파일의 변수 참조

파이썬에서는 다른 파일의 변수를 참조하기 위해 `import` 문을 사용합니다. 다음은 다른 파일에서 정의된 변수를 참조하는 예제입니다.

# 파일: other_file.py
message = "Hello, world!"

# 파일: main.py
import other_file

print(other_file.message)

2. 다른 파일의 함수 호출

다른 파일에 정의된 함수를 호출하려면 해당 파일을 import하고 함수 이름을 사용하여 호출합니다. 예를 들어, 다음은 다른 파일에 정의된 함수를 호출하는 예제입니다.

# 파일: other_file.py
def greet(name):
    print("Hello,", name)

# 파일: main.py
import other_file

other_file.greet("Alice")

3. 예제 코드

# 파일: other_file.py
message = "Hello, world!"

def greet(name):
    print("Hello,", name)

# 파일: main.py
import other_file

print(other_file.message)
other_file.greet("Alice")