# Call by value? def SetField(field): field[0] = 5 test = [1,2,3,4,5,6] SetField(test) # Call by value! print(test[0])