1、字符串切片slice操作
作用:快速提取子字符串
str="sunck is a good man"
print(str[0:5])
print(str[-3:])
#提取倒数三个:man
2、将to be or not to be倒序输出
str="to be or not to be"
print(str[::-1])
3、将”sxtsxtsxt“字符串中所有的s输出
str="sxtsxtsxtsxt"
print(str[::3])
1、字符串切片slice操作
作用:快速提取子字符串
str="sunck is a good man"
print(str[0:5])
print(str[-3:])
#提取倒数三个:man
2、将to be or not to be倒序输出
str="to be or not to be"
print(str[::-1])
3、将”sxtsxtsxt“字符串中所有的s输出
str="sxtsxtsxtsxt"
print(str[::3])