执行下列程序语句的结果是?( )
>>>list1=[i*i for i in range(1,9,2)]
>>>list1
[1,9,25,49]
[1,9,25,49,81]
[1,3,5,7]
[1,3,5,7,9]