I am not getting the user output for an end-of-chapter problem in the Python book I'm reading.
Question is:
Write a program that counts for the user. Let the user enter the starting number, the ending number, and the amount by which to count.
This is what i came up with:
start = int(input("Enter the number to start off with:"))
end = int(input("Enter the number to end.:"))
count = int(input("Enter the number to count by:"))
for i in range(start, end, count):
print(i)
after this input nothing happens except this:
Enter the number to start off with:10
Enter the number to end.:10
Enter the number to count by:10