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