早教吧 育儿知识 作业答案 考试题库 百科 知识分享

python的问题L=[1,2,3,4]whileL:front,L=L[0],L[1:]print(front,L[0])怎么理解front,L=L[0],L[1:]

题目详情
python的问题
L = [1,2,3,4]
while L:
front,L=L[0],L[1:]
print(front,L[0])
怎么理解front,L=L[0],L[1:]
▼优质解答
答案和解析
front=L[0]
和L=L[1:]
每次循环L就变成[2,3,4][3,4][4]