import random as r
print(
"""
Welcome to the Custom Counter!
Type in your starting value and your
ending value. Then, enter the amount
by which to count.
""")
x = True
start = int(input("Starting number: "))
while x != False or start != "":
fin = int(input("Ending number: "))
amount = int(input("Count by: "))
if amount > 0 or amount < 0:
x = False
result = r.randrange(start, fin, amount)
print(result)
input("Hit enter to exit.")
字符串
我创建了while循环,希望在你点击回车时退出程序。不幸的是,无论我做什么,这都不会让我退出while循环。我的条件有什么问题吗?
2条答案
按热度按时间ymdaylpp1#
使用
and
代替or
。在您的行业中:
字符串
你对python说,你想运行直到第一个或第二个条件为真。因为第二个条件总是为真,while将永远运行。
更简单:
型
yeotifhr2#
我的代码:
字符串
这一个我相信考虑到输入非
int
s和从头开始程序时,遇到这样的输入。请参见try语句为一组语句指定异常处理程序和/或清理代码
PS你的代码不处理无效值(即
fin < start
)