dorianrobinson101 dorianrobinson101 07-12-2022 Computers and Technology contestada What will happen when you run this program? num = 10 while num > 0: print (num) O There will be no output. The loop condition is false. • This is an infinite loop. • Python will print 10 ten times. O Python will print the integers from 10 to 1.