有什么我可以使用/导入的更好的东西吗?
while StrLevel != "low" or "medium" or "high":
StrLevel = input("Please enter low, medium, or high for the program to work; ")
最佳答案
您可以使用not in
。
while strLevel not in ["low", "medium", "high"]:
关于python - 在python中使用“不等于”的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36611857/