Give the output of the following when num1 = 4, num2 = 3, num3 = 2
a) num1+= num2 + num3Ans: it will not display any output but value of num1 will become 9 becauseb) print(num1)Ans: Will display 9 which is value of num1.c) num1 = num1 ** (num2 + num3)Ans: it will not display any output but value of num1 will be updated to 59049 because num1 = num1 ** […]
Give the output of the following when num1 = 4, num2 = 3, num3 = 2 Read More »