簡體   English   中英

python程序沒有給出期望的結果

[英]python program not giving desired result

def main():
    names=[0]*10
    for index in range(len(names)):
        names[index] = input("Enter word " + str(index + 1) + ": ")
    bubbleSort(names)
    print("Names in Alphabetical order:")
    print(names)
def bubbleSort(names):
    for maxElement in range(len(names)-1, 0, -1):
        for index in range(maxElement):
            if names[index] > names[index+1]:
                temp = names[index]
                names[index] = names[index+1]
                names[index+1] = temp
    found = False
    index=0
    while found == False and index < len(names):
       Searchword= input('enter a searchword:')
       if scores[index] == Searchword :
            found = True
        else:
            index = index + 1
    if found:
        print("Found")
    else:
        print("Not Found")

main()

輸入無法找到的搜索詞時,所需的所有內容都接受嗎?它不會打印“未找到”,而只會繼續詢問輸入。

您可能需要在循環之前輸入,即:

Searchword= input('enter a searchword:')    
while found == False and index < len(names):       
   if scores[index] == Searchword :
        found = True
    else:
        index = index + 1
  1. if scores[index] == Searchword :更改為if names[index] == Searchword :
  2. Searchword= input('enter a searchword:')放在while循環之外

它看起來應該像這樣:

def main():
    names=[0]*10
    for index in range(len(names)):
        names[index] = input("Enter word " + str(index + 1) + ": ")
    bubbleSort(names)
    print("Names in Alphabetical order:")
    print(names)
def bubbleSort(names):
    for maxElement in range(len(names)-1, 0, -1):
        for index in range(maxElement):
            if names[index] > names[index+1]:
                temp = names[index]
                names[index] = names[index+1]
                names[index+1] = temp
    found = False
    index=0
    Searchword= input('enter a searchword:')
    while found == False and index < len(names):
       if names[index] == Searchword :
            found = True
        else:
            index = index + 1
    if found:
        print("Found")
    else:
        print("Not Found")

main()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM