In Python Write a function swap that swaps the first and last elements of a list argument. Sample output with input: 'all,good,things,must,end,here' ['here', 'good', 'things', 'must', 'end', 'all']...


In Python


Write a function swap that swaps the first and last elements of a list argument.


Sample output with input: 'all,good,things,must,end,here'


['here', 'good', 'things', 'must', 'end', 'all']



''' Your solution goes here '''


values_list = input().split(',') # Program receives comma-separated values like 5,4,12,19
swap(values_list)


print(values_list)



Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here