字符串的分割
语法:字符串.split(分隔符字符串)
功能:按照指定的分隔符字符串,将字符串划分为多个字符串,并存列表对中注意:字符串本身不变,而是得到了一个列表对象
字符串的规整操作(丢前后空榕)语法:字符串Jstrip()
功
my_str ="print(my_str.strip())
itheima and itcast
#结果:"itheima and itcast
字符串的规整操作(去前后指定字符串)语法:字符串.strip(字符串)
my_str ="12itheima and itcast21print(my_str.strip("12"))
#结果:"itheima and itcast
注意,传入的是“12”其实就是:”1”和”2”都会移除,是按照单个字符。
标签:itcast,22,2024,str,strip,字符串,my,itheima From: https://www.cnblogs.com/lklyouhouhou/p/18021300