下面关于format()的使用,错误的是( )。
A: "{0:M^10.3f}".format(5985.7380)
B: "{0:.2d}".format(452.6570)
C: "{0:.3}".format("Good")
D: "{0:3}".format(1234)
A: "{0:M^10.3f}".format(5985.7380)
B: "{0:.2d}".format(452.6570)
C: "{0:.3}".format("Good")
D: "{0:3}".format(1234)
举一反三
- 求format()函数值: >>>"{} {}".format("hello", "world") 返回值为() >>> "{0} {1}".format("hello", "world") 返回值为() >>> "{1} {0} {1}".format("hello", "world") 返回值为()
- math库的使用中,"{0:.2f}".format(math.pi)执行结果是’______’, "{0:*^6.2f}".format(math.pi)执行结果是’______’
- 语句"{0:.3}".format("3.1415926"),返回的值是多少?
- 哪个选项是下面代码的执行结果?s=PYTHONprint({0:3}.format(s))
- 下列程序的运行结果是 >>> s = ‘PYTHON’ >>> “{0:3}”.format(s)