应该是追加6个0到30以内的随机偶数到空列表中吧……
用到该空列表的append方法,和random标准库的randint方法
import random
lst=[]
for i in range(6):
lst.append(randint(0,15)*2)
print(lst)
图示如下