如何在 Python 中等待使用者輸入

Rayven Esplanada 2020年11月7日
如何在 Python 中等待使用者輸入

本教程向你展示瞭如何在 Python 中等待按鍵後再進行其他操作。

在 Python 中使用 input() 等待輸入

input() 是一個 Python 函式,允許在程式碼中處理使用者輸入。它暫時停止了程式碼中的所有程序,因此起到了停止操作的作用。

在我們的例子中,我們可以使用 input() 作為一個鍵監聽器來停止程序,直到使用者按下某個鍵。在使用 input() 的情況下,使用者需要按下回車鍵或返回鍵。

下面是示例程式碼。

def operation1(param):
  #insert code here
def operation2(param):
  #insert code here
def operation3(param):
  #insert code here
  
input("Press enter to start operations...")
ret = operation1("Sample Param")
print("\nOperation 1 has been executed successfully.")
input("\n Press enter to start operation 2...")
ret = operation2(ret)
print("Operation 2 has been executed successfully.")
input("\n Press enter to start final operation")
ret = operation3(ret)
print("All operations executed successfully. Returned a value of ", ret)

這樣,在操作開始之前,使用者需要按回車鍵。同時,後續的每一個操作也需要使用者按回車鍵,基本上在 3 個操作之間增加了一個喘息時間。

Rayven Esplanada avatar Rayven Esplanada avatar

Skilled in Python, Java, Spring Boot, AngularJS, and Agile Methodologies. Strong engineering professional with a passion for development and always seeking opportunities for personal and career growth. A Technical Writer writing about comprehensive how-to articles, environment set-ups, and technical walkthroughs. Specializes in writing Python, Java, Spring, and SQL articles.

LinkedIn

相關文章 - Python Input