Python 允许命令行输入。
    Python 3.6 使用 input() 方法。

    print(“Enter your name:”)
    x = input()
    print(“Hello “, x)