A double is best used for numbers that are real, as in they have a decimal. Int is best used for numbers that are whole, as in no decimal. Strings are best used, as in the example you gave, when you have to represent a piece of information that isn’t strictly numbers
what's your choices for this question
<span>Go appears in the menu bar when Finder has focus, not in the Finder window.</span>
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!
A good website to learn coding is called Lynda.com. It costs money but its well worth it!