我正在尝试使用python使用用户输入来创建列表,然后想使用冒泡函数对列表进行排序,但是当我运行代码时,出现错误消息,提示函数没有属性homework3。有人可以帮助获取代码来运行和排序列表吗?
def bubble(list):
index_length=len(list)-1
sorted= False
while not sorted:
sorted= True
for i in range (0,index_length):
if list[i]>list[i+1]:
sorted=False
list[i],list[i+1]=list[i+1], list[i]
return list
homework3=[]
number_value=int(input('How many numbers do you want to sort?:'))
for j in range(number_value):
value=int(input('Please enter your number value then press enter:'))
homework3.append(value)
print()
print(bubble.homework3)
我相信该代码看起来很适合冒泡排序。但不确定为什么要执行print(bubble.homework3)
。改为使用
print(bubble(homework3))
您需要这样调用函数:-泡泡(家庭作业3)更改语法即可使用