我正在阅读用python自动化无聊的东西,当我在终端中运行程序时,它没有提示输入。我想提供许多行作为输入。我怎么能这样做?
答案 0 :(得分:1)
本书中的示例希望您在运行程序时提供输入,
python foo.py username password
如果您希望在运行时提示您在脚本中使用以下内容,
username = input("enter your username")
password = input("enter your password")
然后使用pyperclip复制
pyperclip.copy(username)