这段代码有什么问题:
split_list = [3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 45]
split_list2 = [None, None, None, None, None, None, None, None, None, None, None, None]
result = [3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 45, None, None, None]
for i in range(len(split_list)):
split_list2[i] = split_list[i]
在 PyCharm 中它会发出警告;
意外类型:(int, int) 可能类型:(SupportsIndex, None) (slice, Iterable[None])
但是脚本运行得很好,并且这段代码完全按照我的预期工作。不过,我不喜欢 IDE 中出现警告,有什么快速修复方法吗?