服务器之家

服务器之家 > 正文

详解Python中expandtabs()方法的使用

时间:2020-07-01 09:47     来源/作者:Python教程网

 expandtabs()方法返回制表符,即该字符串的一个副本。 '\t'已经使用的空间,可选择使用给定的tabsize(默认8)扩展。
语法

以下是expandtabs()方法的语法:

?
1
str.expandtabs(tabsize=8)

参数

  •     tabsize -- 此选项指定要替换为制表符“\t' 的字符数.

返回值

此方法返回在制表符,即通过空格进行了扩展字符串,'\t'的副本。
例子

下面的例子显示expandtabs()方法的使用。

?
1
2
3
4
5
6
7
8
#!/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);

当我们运行上面的程序,它会产生以下结果:

?
1
2
3
Original string: this is    string example....wow!!!
Defualt exapanded tab: this is string example....wow!!!
Double exapanded tab: this is     string example....wow!!!
标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部