使用下列哪个Python命令可以把lst变成一个只有整数的列表?( )
lst = [7, 8, 4, 0, 5, 80, 6.2, 2.9, 11, 3]
del lst[6:7]
del lst[6:8]
del lst[6,8]
del lst[6],lst[8]