What will be the Output 🤔👇
def fun_x(x):
x = x + '2' x = x * 2 return x print(fun_x("python"))
def fun_x(x):
x = x + '2' x = x * 2 return x print(fun_x("python"))
Anonymous Quiz
45%
python2python2
17%
python2
29%
Error
8%
None of above
>>> list1 = [11, 2, 23]
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
Anonymous Quiz
56%
False
13%
Error
27%
True
3%
None of the above