题目
23. (4.0分) Python中的数值类型包含A. rangeB. listC. intD. complexE. float
23. (4.0分) Python中的数值类型包含
A. range
B. list
C. int
D. complex
E. float
题目解答
答案
CDE
C. int
D. complex
E. float
C. int
D. complex
E. float
解析
Python中的数值类型包括整数(int)、复数(complex)和浮点数(float)。这些类型用于表示数学中的数值。range和list不是数值类型,它们是用于存储一系列值的数据结构。