def addOffset(*theList): # the asterix makes the args a list of optional params newlist = [] for i in theList: newlist.append(i+5) return newlist def addTwo(one, two): one = one + 10 two = two + 10 return one, two