下面关于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)
B
举一反三
- 求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)
内容
- 0
用print()函数打印输出一个字符串的第一个字符,该字符串存储在x中,以下方法正确的是: A: format(x[0]) B: format(x[1]) C: format(x[1:]) D: format(x)
- 1
哪个选项是下面代码的执行结果? s=‘PYTHON’ print("{0:3}".format(s))
- 2
【填空题】表达式 '{0:#d},{0:#x},{0:#o}'.format(65) 的值为 _____________ 。
- 3
print('{0} {1} {0}'.format('hello','world'))输出正确的是?
- 4
用print( )函数打印输出姓名的姓,即姓名中第一个汉字,姓名存储在name中,以下方法正确的是: A: format(name[0]) B: format(name[-1]) C: format(name[1]) D: format(name)