I am little bit new to Python and I got stuck a bit in this moment:
c = 5
cmds.pointPosition(geo[0]+".cv[0]["+c+"2]", w=True)
it gives me error:
Error: TypeError: file line 39: coercing to Unicode: need string or buffer, int found #
Question is how to put variable c = 5 inside second bracket so it will be 7?
str(c)orformat()or an f-string.