中国大学MOOC: 对print({0:},{1:*>10.3f}.format(20,3.245467))中大括号内格式字符的解读,哪些是正确的:
举一反三
- 变量x=123.45时,不能输出结果“123.5”的是( )。 A: print( {:.1f} .format(x)) B: print(round(x,1)) C: print( {0:.1f} .format(x)) D: print(f'{x:.f}')
- print('{0} {1} {0}'.format('hello','world'))输出正确的是?
- 【填空题】下列Python语句的输出结果是____。 print("1".rjust(20," ")) print(format("121",">20")) print(format("12321",">20"))
- 下面关于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)
- 中国大学MOOC: print()函数和format()方法不可以将结果以特定格式输出。