详解Python中expandtabs()方法的使用,pythonexpandtabs
详解Python中expandtabs()方法的使用,pythonexpandtabs
expandtabs()方法返回制表符,即该字符串的一个副本。 '\t'已经使用的空间,可选择使用给定的tabsize(默认8)扩展。
语法
以下是expandtabs()方法的语法:
str.expandtabs(tabsize=8)
参数
- tabsize -- 此选项指定要替换为制表符“\t' 的字符数.
返回值
此方法返回在制表符,即通过空格进行了扩展字符串,'\t'的副本。
例子
下面的例子显示expandtabs()方法的使用。
#!/usr/bin/python str = "this is\tstring example....wow!!!"; print "Original string: " + str; print "Defualt exapanded tab: " + str.expandtabs(); print "Double exapanded tab: " + str.expandtabs(16);
当我们运行上面的程序,它会产生以下结果:
Original string: this is string example....wow!!! Defualt exapanded tab: this is string example....wow!!! Double exapanded tab: this is string example....wow!!!
相关内容
- 详解Python中find()方法的使用,pythonfind
- Python中的index()方法使用教程,python使用教程
- 探究Python中isalnum()方法的使用,pythonisalnum
- Python中处理字符串之isalpha()方法的使用,pythonisalpha
- 在Python中处理字符串之isdigit()方法的使用,pythonisdigi
- python求解水仙花数的方法,python求解水仙花
- 总结Python编程中三条常用的技巧,总结python编程三条
- Python使用django获取用户IP地址的方法,pythondjango
- Python字符串替换实例分析,python实例分析
- Python解析nginx日志文件,
评论关闭