What will be the output of the following Python code?
def f1(a,b=[]): b.append(a) return bprint(f1(2,[3,4]))
निम्नलिखित Python कोड का आउटपुट क्या होगा?
A. [3,2,4]
B. [2,3,4]
C. Error एरर
D. [3,4,2]