我没有得到我正在阅读的 Python 书中章节结尾问题的用户输出。
问题是:
编写一个对用户有用的程序。让用户输入开始编号、结束编号和计数的数量。
这就是我想出的:
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)
在这个输入之后什么都没有发生,除了这个:
Enter the number to start off with:10
Enter the number to end.:10
Enter the number to count by:10