summaryrefslogtreecommitdiff
path: root/progs/a954.py
blob: 78b3aa1eb2b4d4c6093dbe205cefd72426a6316c (plain)
1
2
3
4
5
6
def swap_List(newList): 
    size = len(newList) 
    temp = newList[0] 
    newList[0] = newList[size - 1] 
    newList[size - 1] = temp  
    return newList