이 튜토리얼에서는 Python에서 사용자로부터 여러 입력을 받는 방법을 배울 것입니다. .
사용자가 입력한 데이터는 문자열에 있습니다. 체재. 따라서 split()을 사용할 수 있습니다. 사용자가 입력한 데이터를 나누는 방법입니다.
사용자로부터 여러 문자열을 가져오겠습니다.
예시
# taking the input from the user strings = input("Enter multiple names space-separated:- ") # spliting the data strings = strings.split() # printing the data print(strings)
출력
위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.
Enter multiple names space-separated:- Python JavaScript Django React ['Python', 'JavaScript', 'Django', 'React']
여러 숫자를 입력으로 사용하려면 어떻게 해야 합니까? 지도를 사용하여 각 입력을 정수로 변환할 수 있습니다. 및 int 기능. 예를 들어 보겠습니다.
예시
# taking the input from the user numbers = input("Enter multiple numbers space-separated:- ") # spliting the data and converting each string number to int numbers = list(map(int, numbers.split())) # printing the data print(numbers)
출력
위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.
Enter multiple numbers space-separated:- 1 2 3 4 5 [1, 2, 3, 4, 5]
결론
필요에 따라 코드를 수정하고 사용자로부터 입력을 받을 수 있습니다. 튜토리얼에서 질문하는 경우 댓글 섹션에 언급하세요.