字符串格式化代码

2012-06-25  肖莉 

字符串格式化代码
格式 描述
%% 百分号标记
%c 字符及其ASCII码
%s 字符串
%d 有符号整数(十进制)
%u 无符号整数(十进制)
%o 无符号整数(八进制)
%x 无符号整数(十六进制)
%X 无符号整数(十六进制大写字符)
%e 浮点数字(科学计数法)
%E 浮点数字(科学计数法,用E代替e)
%f 浮点数字(用小数点符号)
%g 浮点数字(根据值的大小采用%e或%f)
%G 浮点数字(类似于%g)
%p 指针(用十六进制打印值的内存地址)
%n 存储输出字符的数量放进参数列表的下一个变量中

# 字符串对齐
word = "version3.0"
# 20个字符中间对齐
print word.center(20)
# 20个字符两边补齐*
print word.center(20, "*")
# 左对齐
print word.ljust(0)
# 20个字符右对齐
print word.rjust(20)
# 前面空20个字符
print "% 30s" % word

去除转义字符
strip()
lstrip()
rstrip()

字符的分割
split()
split(",")
split(",", 2)

字符串比较
==
startswith()
endswith()

查找替换
find(substring [, start [, end]])
rfind()
replace(new, old [, max])

字符串与日期
time.strftime(format[, tuple]) ->string
time.strptime(string, format) ->struct_time
337°/3377 人阅读/0 条评论 发表评论

登录 后发表评论