Bucsan278 Bucsan278 26-04-2024 Computers and Technology contestada What is the output of the following code? class class1: a = 1 def f1(self): a = 2 class1.a = 1 print(class1.a, end=' ') print(a, end=' ') class1().f1() class1().f1()