WAIT, you didn't leave a file. Please redo this question and tag me so i can help you.
Answer:
ok I've got the answer sheet on the picture I will attach
Explanation:
I had to crop to size on my computer and found them all
num = int(input("Enter a number: "))
i = 2
while num > 1:
if num % i == 0:
num = num / i
print(i, end=" ")
i = 2
i += 1
I hope this helps!