강의

멘토링

로드맵

Inflearn Community Q&A

kshyun04203811's profile image
kshyun04203811

asked

Introduction to Python Algorithm Problem Solving (Coding Test Preparation)

파이썬 종료 return 사용법

Written on

·

342

0

안녕하세요,

파이썬에서 원하는 값을 찾았을때 print를 하고 return으로 끝내고 싶은데,

어떻게 해야하나요..

while문으로 이진탐색중에 원하는 값을 찾아서 print하고 끝내고 싶은데,

return을 어떻게 해야할지 모르겠습니다..

코테 준비 같이 해요! python

Answer 1

0

codingcamp님의 프로필 이미지
codingcamp
Instructor

안녕하세요^^

return은 함수를 종료하는 기능입니다.

break를 하세요.

kshyun04203811's profile image
kshyun04203811

asked

Ask a question