What will be the output of the following Python code?
def foo(k): k[0] = 1 q = [0] foo(q) print(q)
निम्नलिखित Python कोड का आउटपुट क्या होगा?