これは、出来る?
グローバルなリストを、
関数内で、添え字で代入だけど。
今、パソコンがない環境なのです。。。

aaa = [2,6,9]

def fff(bbb):
bbb [1] = 77
print(bbb)

fff(aaa)