如何让python响应输入?

时间:2017-08-29 18:32:14

标签: python python-3.x

我的程序目前看起来像这样:

print ("If you are an Android user type 1 in the space provided. Otherwise, type 2.")
input = int(input (":"))
if input = 1:
    print ("You use an android device. The Android kernel is based of Linux.")
else:
    print ("You use an Apple product or a Windows device. There is also some Linux distributions designed for phones but they are not mainstream.")

我不知道如何让它响应输入。我的python编辑器(SPE)发现了该行的错误:

if input = 1:

这也是我找不到的一条信息。我的python版本是3.4.2。

2 个答案:

答案 0 :(得分:2)

您需要说input == 1input = 1将1分配给输入

答案 1 :(得分:0)

=是赋值运算符。你的意思是==,是对平等的考验。