errorType / 34.py
Beuys's picture
Upload 47 files
e16247a verified
raw
history blame contribute delete
96 Bytes
lst = [1,2,3,4,5]
#错误写法:a,b,c,d = eval(lst[0:3])
a,b,c,d = lst[0],lst[1],lst[2],lst[3]