반응형
내 문제는 무엇입니까? biggest (10,5,6)
를 실행했지만 아무것도 반환하지 않습니다.
def biggest(a,y,z):
Max=a
if y>Max:
Max=y
if z>Max:
Max=z
return Max
해결 방법
def biggest(a, y, z):
Max = a
if y > Max:
Max = y
if z > Max:
Max = z
if y > z:
Max = y
return Max
참조 페이지 https://stackoverflow.com/questions/18973575
반응형
'파이썬' 카테고리의 다른 글
파이썬 IPython 노트북 저장 위치 (0) | 2021.01.05 |
---|---|
파이썬 How to convert string representation of list to a list? (0) | 2021.01.05 |
파이썬 vim and python scripts debugging (0) | 2021.01.05 |
파이썬 Python의 argparse에서 metavar 및 action은 무엇을 의미합니까? (0) | 2021.01.05 |
파이썬 Stopword removal with NLTK (0) | 2021.01.05 |
댓글