Python格式化

字符串格式化 format()
基本语法是通过{} 和 : 来代替以前的 %

print("{} {}".format("hello", "world"))
//指定位置
print("{0} {1}".format("hello","world")); /// hello world
//指定位置
print("{1} {0} {1}".format("hello","world")); // world hello world

print("网站名:{name}, 地址{url}".format(name="HelloWorld",url="helloword.com"))

#通过字典设置参数
site = {"name":"Lastgo", "Helloword.com"}
print("网站:{name},地址:{url}".format(**site))

数字格式化

//保留2位数字
print("{:.2f}".format(3.1415926)) //3.14
//带符号
print("{:+.2f}".format(3.1415926))// +3.14
//数字以 “,”分割
print("{:,}".format(1000000)) //1,000,000

你可能感兴趣的:(Python格式化)