これが私が達成しようとしていることです:
void some_function(int, int *, float);
と
void some_function(int a, int *b, float c);
これまでのところ、文字列をループするときに "," を chr(97+i) に置き換えようとしました。
text = len("void some_function(int, int *, float);")
i = 0
for j in range(0, length)
if text[j] == ",":
rep = " " + chr(97+i) + " .,"
text = text.replace("," rep)
i = i + 1
j = 0 # resetting the index, but this time I want to find the next occurrence of "," which I am not sure
しかし、これは仕事をしていません。これを行うより良い方法があれば教えてください。