Python 常見筆試程序題——不定期更新

1.冒泡排序 #sort.py def Sort(list): for j in range(len(list) - 1): count = 0 for i in range(0,len(list) - 1 - j): if list[i] > list[i + 1]: list[i],list[i +
相關文章
相關標籤/搜索