おはようございます。私はlistOneを並べ替えることができました。 ListTwoもソートする必要があります。すでにバブルソートにlistTwoを追加してソートされるようにする方法はありますか? 別のループを記述する必要はありますか?バブルソート2リストの単一機能
listOne = [3, 9, 2, 6, 1]
listTwo = [4, 8, 5, 7, 0]
def bubbleSort (inList):
moreSwaps = True
while (moreSwaps):
moreSwaps = False
for element in range(len(listOne)-1):
if listOne[element]> listOne[element+1]:
moreSwaps = True
temp = listOne[element]
listOne[element]=listOne[element+1]
listOne[element+1]= temp
return (inList)
print ("List One = ", listOne)
print ("List One Sorted = ", bubbleSort (listOne))
print ("List Two = ", listTwo)
print ("List Two Sorted = ", bubbleSort (listTwo))
あなたは 'メソッド' というパラダイムについて聞いたことが? ここで読むことはできません:[メソッド](https://en.wikipedia.org/wiki/Method_(computer_programming)) そして、Pythonの場合:[Pythonの "メソッド"とは何ですか?] http://stackoverflow.com/q/3786881/4907452) –