标签:空格 除了 str style 现在 print rip pre nbsp
字符串中的前导空格就是出现在字符串中第一个非空格字符前的空格,我们使用方法lstrip()可以将它从字符串中移除
a=‘ Ayushi ‘.lstrip() print(a)
#Ayushi
可以看到,该字符串既有前导字符,也有后缀字符,调用lstrip()去除了前导空格,如果我们想去除后缀空格,就用rstrip()方法
a=‘ Ayushi ‘.rstrip() print(a) # Ayushi
标签:空格 除了 str style 现在 print rip pre nbsp
原文地址:https://www.cnblogs.com/z-x-y/p/9906772.html