Python將列表中的元素轉化為數字並排序的示例

2022-09-26 11:33:15 字數 495 閱讀 3938

有乙個數字字元的列表:

numbers = ['2', '4' '1', '3']

想要把每個元素轉換為數字:

numbers = [2, 4, 1, 3]

1. python2.x,可以使用map函式:

numbers = map(int,程式設計客棧 numbers)

2. python3.x,map返回的是map物件,當然也可以轉換為list:

numbers = list(map(int, numbers))

排序:使用swarubiibhorted函式,從小到大排序:

numbers = sorted(numbers, reverse = false)

從大到小排序:

numbers = sorted(numbers, reverse = true)

本文標題: python將列表中的元素轉化為數字並排序的示例

本文位址: /jiaoben/python/295215.html

python中刪除列表中的元素

1.remove remove刪除列表中的某個元素,但是只刪除第一 這個第一是指從前至後 個出現的。in 11 a 0,2,3,2 in 12 a out 12 0,2,3,2 in 13 a.remove 2 in 14 a out 14 0,3,2 2.del 根據元素的索引刪除元素 in 21...

Python向列表中插入元素 列表

python列表中的元素種類可以是相同的也可以是不同的,如 num 1 2 3 4 str python 1 中國 nmu 1 2 3 4 str python 1 中國 phone 諾基亞 三星 oppo 華為 print phone 諾基亞 三星 oppo 華為 2 extend 在列表末尾新增...

Python 刪除列表中的空元素, n t元素

本以為挺簡單的,一頓操作之後,再加上網上的資料,還有點小複雜。以案例來說,更清晰些,做個學習筆記。list eg hello n world t print list eg 輸出如下 hello n world t list eg change x.strip for x in list eg if...