파이썬 TypeError : 목록 인덱스는 부동 소수점이 아닌 정수 여야합니다.
오류를 생성하는 Python 3.x 프로그램이 있습니다. def main(): names = ['Ava Fischer', 'Bob White', 'Chris Rich', 'Danielle Porter', 'Gordon Pike', 'Hannah Beauregard', 'Matt Hoyle', 'Ross Harrison', 'Sasha Ricci', 'Xavier Adams'] entered = input('Enter the name of whom you would you like to search for:') binary_search(names, entered) if position == -1: print("Sorry the name entered is not part of the list.") else..
2021. 2. 2.