更新時間:2021年05月19日15時38分 來源:傳智教育 瀏覽次數(shù):
replace()的作用:
Python replace()方法把字符串中的old(舊字符串)替換成new(新字符串),如果指定第三個參數(shù)max,則替換不超過max次。
replace()基本語法:
str.replace(old, new, max)
參數(shù)說明:
old:將被替換的子字符串。
new:新字符串,用于替換old子字符串。
max:可選字符串,替換不超過max次
下面使用replace()替換字符串中的字符:
URL = "http://www_itcast_cn/newsvideo/newslist_1.shtml" URL = URL.replace("_", ".", 2) print(URL)運行結果:
猜你喜歡:
使用Python將xml格式網(wǎng)站地圖轉為txt格式地圖
matplotlib是什么?matplotib的3中API介紹