所以我的代码有点麻烦,我99%的肯定是我的'if / elif'循环。我已经导入了txt文件,并且我的Bubblesort算法可以正常工作,但是无论输入什么,它只会输出3的“ array1”。
examplearray=(input('Select Array'))
if examplearray == 'ex1' or 'ex1'.upper():
bubbleSort(ex1array)
print(ex1array)
elif examplearray == 'ex2' or 'ex2'.upper():
bubbleSort(ex2array)
print(ex2array)
elif examplearray == 'ex3' or 'ex3'.upper():
bubbleSort(ex3array)
print(ex3array)
有人对此有任何建议吗?只是问您是否需要我的代码;预先感谢。