第17486题 单选
下列Python表达式中能产生列表[1, 3, 5, 7, 9]的是?
A

list(range(0,9))

B

list(range(1,10))

C

list(range(0,9,2))

D

list(range(1,10,2))