백준 2562 (python) append, index

Grace Goh·2022년 9월 10일
0

백준 (python)

목록 보기
16/27
post-custom-banner
numbers = []

for i in range(9) :
    numbers.append(int(input()))
    # 리스트에 input 값을 9회 추가한다.

maximum = max(numbers)

print(maximum)
print(numbers.index(maximum)+1)

  • 리스트명.append() 추가하기

  • 리스트명.index(값) 값의 위치(인덱스) 찾기

profile
Español, Inglés, Coreano y Python

0개의 댓글