+ 2
Please explain how the answer is coming as 3 for the below code .
a = [7,3,9,5] b = [8,0,4] if a > b: print(len(a)) else: print(len(b))
6 ответов
+ 10
You just learn list & just list elements compared.
+ 4
Thank you so much .
0
سلا
a = [7,3,9,5] b = [8,0,4] if a > b: print(len(a)) else: print(len(b))