Python 3.4 - 如果键入 0-9 的数字则输出 x 的基本程序苦苦挣扎

Python 3.4 - Struggling with a basic program that outputs x if a number from 0-9 is typed

这只是我正在制作的一个更大程序的示例代码,但我似乎无法让它工作。基本上,Python 将 <= 识别为不正确的语法,但我看不出如何识别。程序中这一行的正确写法是什么?

number1 = int(input())

if number1 >= 0 and <= 9:
    print("x")
else:
    print("y")

感谢任何帮助。

分别进行各个逻辑测试:

if number1 >= 0 and number <= 9:

或(更好)Python支持数学式不等式:

if 0 <= number1 <= 9:

您可以进行如下操作:

if  0 <= number1 <= 9:
    print("x")
else:
    print("y")