Computer Science

Let nums2 and nums3 be two non-empty lists. Write a Python command that will append the last element of nums3 to the end of nums2.

Python List Manipulation

21 Likes

Answer

nums2.append(nums3[-1])

Answered By

10 Likes


Related Questions