编写函数,模拟内置函数 sorted()。
生活随笔
收集整理的這篇文章主要介紹了
编写函数,模拟内置函数 sorted()。
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
編寫函數,模擬內置函數 sorted()。
用python來簡單的模擬sorted可以用庫函數來進行,也較為簡單,我選了min()和sort()來進行模擬
利用min()函數
def sorteds(items):temp = items[:]result = [] while temp:u = min(temp)result.append(u)temp.remove(u) return result #利用min函數來判斷大小利用sort()函數
def sorteds(items):temp = items[:]temp.sort() return temp#直接用sort來進行sorted的操作總結
以上是生活随笔為你收集整理的编写函数,模拟内置函数 sorted()。的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 编写函数,可以接收任意多个整数并输出其中
- 下一篇: Python:用字典建立一个通讯录,向字