关于逆向操作

时间:2017-10-22 13:54:59

标签: python

我是Python的新手,仅仅是为了我自己的兴趣。我正在参加eDX的入门课程。我想了解为什么当我运行以下代码时,反向函数将反转reverse_fours列表和原始all_fours

all_fours = fours + more_fours
reverse_fours = all_fours
print("All ",all_fours)
print("Reverse ",reverse_fours)
reverse_fours.reverse()
print("All ",all_fours)
print("Reverse ",reverse_fours)

0 个答案:

没有答案