Call Operator through Python incrementation

Hello people!
Does someone know, how I can change the value of 95 similar operators which have the same prefix “mov” from mov1 to mov95 ?
I am trying around something like this, but i am just missing the incrementation of the index’s operator which should be done through i incrementation… (it is the number of rows of the folder DAT)

change_value_of_i_operators

Thanks!!

To add the ‘i’ to the string ‘mov’, you will need to cast i to a string and add it to ‘mov’.

op(‘mov’ + str(i))