输入功能

时间:2018-04-05 20:37:39

标签: python function if-statement input

我试图在python中编写一个对输入做出反应的函数

示例

Action = input("Input:")
function commands():
       if action == Commands:
         print("Commands so far")

但我不知道如何使功能发挥作用。 有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

这是你要的吗?

def react(action):
    if action == 'act':
        print('act given')
inp = input("Type action: ")
react(inp)