摘要:
字符串常用操作练习补充二 1 #coding:utf-8 2 3 #***将"\t"转为空白符,默认使各段字符串长度为8的整数倍,指定长度则以指定的长度为准 4 str1 = "\tThis\tis Tab test\t!" 5 print(str1.expandtabs()) 6 ''' 7 输出 阅读全文
摘要:
字符串常用操作练习补充一 1 #coding:utf-8 2 3 name = "SaDXdxasdf" 4 #等同于nane = str("Lee") ,将调用str类的__init__方法 5 6 #打印name的类型 7 print(type(name)) 8 9 #打印name所属类的所有成 阅读全文