1. 首页
  2. 数据库
  3. 其它
  4. Python中几种操作字符串的方法的介绍

Python中几种操作字符串的方法的介绍

上传者: 2020-12-31 00:47:24上传 PDF文件 70.54KB 热度 23次
#! -*- coding:utf-8 -*- import string s = 'Yes! This is a string' print '原字符串:' + s print '小写:' + s.lower() print '大写:' + s.upper() print '大小写转换:' + s.swapcase() print '首字母大写:' + s.capitalize() print '每个单词首字母大写:' + s.title() #各种对齐函数 print '左对齐:' + s.ljust(40,'.')#输出width个字符,S左对齐
用户评论