Python语句 print(round(123.84,0),round(123.84,-2),floor(15.5))的输出结果是
124.0 100.0 15
举一反三
- Python语句print(pow(-3,2),round(18.67,1),round(18.67,-1))的输出结果是
- Python语句print(round(18.67,-1))的输出结果是______
- 函数 ROUND(123.845678,0)的运算结果是: A: 124 B: 123 C: 123.8 D: 123.84
- 语句select floor(round(13.4321,2)), ceiling(round(12.4567,3))的执行结果是:______ 和______
- 以下程序的不可能输出结果是: from random import * print(round(random(),2))
内容
- 0
Python代码print(round(0.1+0.2,1)==0.3)的输出结果是() A: True B: False C: true D: false
- 1
语句print("{0:=^20}".format("Python"))输出结果是: ==============Python|=======Python=======|Python|Python==============
- 2
下面代码的输出结果是( ) x=3.1415926print(round(x,2) ,round(x))
- 3
Python语句print((16+14)/2)的输出结果是( )
- 4
语句SELECT ROUND(7.55,1), ROUND(7.55); 的执行结果是