I'n new to Python. I have a simple question (I tried looking but I don't think this has been asked before):
I want a function to not return anything but I want it to modify a data structure that I pass as an argument to the function. How do I do this ?
More specifically, in C I have a function with the prototype :
void function(int parameter1,int *parameter2)
How do I do this in Python ?