1 Python编程:从入门到实践--变量和简单数据类型

字符串

  使用方法修改字符串的大小写

name = "Hell Word"
print name.lower()    #转换为小写
print name.upper()   #转换为大写
print name.title()      #转换为首字母大写

  Python使用加号(+)来合并字符串

>>> fist = "hello"
>>> second = "work"
>>> fullname = fist + " " + second + "!"
>>> print fullname
hello work!

  使用制表符\t或换行符\n增加空白

>>> str1 = "nihao\nhaha"
>>> print str1
nihao
hah

  删除空白

>>> str = " hello word"
>>> print str
 hello word
>>> print str.lstrip()    #删除左空格
hello word
>>> print str.rstrip()   #删除右空格
 hello word
>>> print str.strip()    #删除两侧空格
hello word

  

posted @ 2022-06-09 11:16  摩天居士-谢烟客  阅读(29)  评论(0编辑  收藏  举报