Welcome to Westonci.ca, the place where your questions are answered by a community of knowledgeable contributors. Discover a wealth of knowledge from experts across different disciplines on our comprehensive Q&A platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

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.