python 在列表中间插入字符串
2021-07-10 00:07
阅读:543
标签:code div 列表 插入 color class 直接插入 拆分 col python 在列表中间插入字符串 标签:code div 列表 插入 color class 直接插入 拆分 col 原文地址:https://www.cnblogs.com/KakagouLT/p/9563396.html
>>> a=[‘贫弱!‘,‘無駄!‘,‘WRYYYY!‘]
>>> a[0:0]=‘欧拉!‘ #直接插入会导致字符拆分
>>> a
[‘欧‘, ‘拉‘, ‘!‘, ‘贫弱!‘, ‘無駄!‘, ‘WRYYYY!‘]
>>> a[0:3]=["欧拉!"] #只要把字符串包在列表里即可
>>> a
[‘欧拉!‘, ‘贫弱!‘, ‘無駄!‘, ‘WRYYYY!‘]
>>> a.insert(0,"HIGH!") #其实用insert也行
>>> a
[‘HIGH!‘, ‘欧拉!‘, ‘贫弱!‘, ‘無駄!‘, ‘WRYYYY!‘]
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python 在列表中间插入字符串
文章链接:http://soscw.com/index.php/essay/102989.html
文章标题:python 在列表中间插入字符串
文章链接:http://soscw.com/index.php/essay/102989.html
评论
亲,登录后才可以留言!