def fun():try:return 3finally:return 7k = fun()print(k)
What will be the output of the following code snippet?numbers = (4, 7, 19, 2, 89, 45, 72, 22)sorted_numbers = sorted(numbers)even = lambda a: a % 2 == 0even_numbers = filter(even, sorted_numbers)print(type(even_numbers))
class Output{public static void main(String args[]){try{int a=0;int b=7;int c=b/a;System.out.println("Good vibes only");}}}
