import re
shop_list =
[399
,4369
,539
,288
,109
,749
,235,19
,99,1000
]# 提示使用者輸入要新增的商品**(多個**分號隔開) 比如 389;400;480;180;190
area =
input
("輸入你要新增的**:"
)# 將輸入的商品**進行字串切割
list_new = area.split(sep=
";")
# 分別追加到原有的shop_list列表的末尾
shop_list.extend(
map(
int, list_new)
)print
(shop_list)
# 提示使用者輸入熱銷產品** 666元
hot_num =
int(
input
("請輸入熱銷產品**:"))
# 提示使用者插入商品列表的索引位置 8號位置
index_num =
int(
input
("輸入索引位置:"))
shop_list.insert(index_num -
1, hot_num)
# 輸出shop_list
print
(shop_list)
python 音訊切割
參考自 安裝 pydub pip3 install pydub python 實現 coding utf 8 from pydub import audiosegment 先導入這個模組 import os filems os.listdir d 1 dirj d 1 dirjl d 1 mp4 i...
python 切詞演算法(正向切割 反向切割)
author wanghuafeng coding utf 8 import os import sys import codecs from collections import deque try path os.path.dirname os.path.abspath file except ...
Python切割nginx日誌
前面寫過bash shell對nginx日誌的切割,現在用python進行其操作。usr bin python coding utf 8 created on 2011 11 17 切割nginx的日誌檔案,重新生成乙個log日誌,nginx的程序號不變動 author jimingsong imp...