运行下列语句,输出的结果是?nums = [i * i for i in range(1, 10) if i % 3 == 0]print(nums)
[1, 4, 9, 16, 25, 36, 49, 64, 81]
[9, 36, 81]
[3,6,9]
[4, 16, 36, 64]