def get_values():
# 여러 값 반환
int_value = 10
string_value = "Hello"
# 여러 값 반환
return int_value, string_value
# 함수 호출하여 반환된 값을 변수에 할당
returned_int, returned_string = get_values()
# 반환된 값을 출력
print("Returned integer:", returned_int)
print("Returned string:", returned_string)
'프로그래밍 > 파이썬' 카테고리의 다른 글
ta_lib를 이용하여 슬로우 스토캐스틱 구하기 (0) | 2024.06.15 |
---|---|
pip 오류 Configuration file could not be loaded. (0) | 2024.06.11 |
[에러]pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. (0) | 2024.03.31 |
pyautogui에서 moveto 등이 안될때 (0) | 2024.03.28 |
pip install pyaudio 설치에러 (0) | 2024.03.05 |