파이썬에서 입력을 기다리는 방법

Rayven Esplanada 2023년10월10일
파이썬에서 입력을 기다리는 방법

이 자습서에서는 다른 작업을 진행하기 전에 Python에서 키 누름을 기다리는 방법을 보여줍니다.

파이썬에서 입력을 기다리려면input()사용

input()은 코드 내에서 사용자 입력을 처리 할 수있는 Python 함수입니다. 코드 내의 모든 프로세스를 일시적으로 중지하므로 수행되는 작업에 대한 스토퍼 역할을합니다.

우리의 경우input()을 키 수신기로 사용하여 사용자가 특정 키를 누를 때까지 프로세스를 중지 할 수 있습니다. input()을 사용하는 경우 사용자는 입력 또는 반환 키를 눌러야 한다.

아래는 예제 코드입니다.

def operation1(param):
    # insert code here
    pass


def operation2(param):
    # insert code here
    pass


def operation3(param):
    # insert code here
    pass


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)

이렇게하면 작업이 시작되기 전에 사용자가 Enter 키를 눌러야합니다. 또한 이후의 각 작업은 사용자가 Enter 키를 눌러야하므로 기본적으로 세 작업 사이에 숨을 쉬어야합니다.

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