标签: python-3.x
x是一个int
if x==(user presses enter without value input) y=1
如何让代码接受该值?
答案 0 :(得分:0)
在这种情况下,你可能会读到一个空字符串。空字符串为falsy,因此您可以使用以下内容:
if not x: # i.e. if "user gave no input" ...
您应该在解析x之前执行检查作为int。
x