第13703题
运行给定Python程序,要输出“小明的身高是1.55”,横线处应填入的格式化占位符是?
height = 1.55
print('小明的身高是____。' % height)
A

%d

B

%f

C

%.f

D

%.2f

提交0次 正确率0.00%
答案解析