Question: Will the following code snippet remain stuck in an infinite loop? num1 = 7-34 while num1 <= 0: print(num1) num1 = num1 - 1 yes or no??Will the following code snippet remain stuck in an infinite loop?num1 = 7-34 while num1 <= 0: print(num1) num1 = num1 - 1yes or no??