python 在列表中间插入字符串

2021-07-10 00:07

阅读:543

标签:code   div   列表   插入   color   class   直接插入   拆分   col   

>>> a=[贫弱!,無駄!,WRYYYY!]
>>> a[0:0]=欧拉! #直接插入会导致字符拆分
>>> a
[, , , 贫弱!, 無駄!, WRYYYY!] 
>>> a[0:3]=["欧拉!"] #只要把字符串包在列表里即可
>>> a
[欧拉!, 贫弱!, 無駄!, WRYYYY!]
>>> a.insert(0,"HIGH!") #其实用insert也行
>>> a
[HIGH!, 欧拉!, 贫弱!, 無駄!, WRYYYY!]

 

python 在列表中间插入字符串

标签:code   div   列表   插入   color   class   直接插入   拆分   col   

原文地址:https://www.cnblogs.com/KakagouLT/p/9563396.html


评论


亲,登录后才可以留言!