要在Python交互命令窗口中實現自動化,您可以使用Python的內置模塊input()
函數來模擬用戶輸入。以下是一個簡單的示例,展示了如何自動化交互式命令窗口的過程:
import time
def interactive_command_window():
print("歡迎使用交互式命令窗口!")
while True:
command = input("請輸入一個命令(輸入'退出'以結束):")
if command.lower() == '退出':
print("感謝使用,再見!")
break
# 在這里執行您的自動化任務
if command.lower() == 'hello':
print("你好!")
elif command.lower() == 'time':
import datetime
current_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f"當前時間:{current_time}")
else:
print("未知命令,請重試。")
time.sleep(1) # 模擬等待用戶輸入的時間間隔
interactive_command_window()
在這個示例中,我們定義了一個名為interactive_command_window
的函數,該函數模擬了一個交互式命令窗口。在函數內部,我們使用一個無限循環來持續接收用戶輸入的命令,并根據命令執行相應的操作。當用戶輸入“退出”時,程序將結束。您可以根據需要修改此函數以執行其他自動化任務。