쏘ing

파이썬 입력 본문

Python

파이썬 입력

한민민 2022. 2. 9. 11:30

입력

- input()

- 정수 : int(input())

 

공백 제거

- input().split()

- 정수 : int(input().split())

 

여러 항목(공백 구분)

- A, B = map(str, input().split())

- 정수 : A, B = map(int, input().split())

 

입력 시간 줄이기

import sys

A, B = map(int, sys.stdin.readline().rstrip().split())

 

공백 구분 문자열 리스트로 받기

- word = list(map(str, input().split())

- 정수 : num = list(map(int, input().split())

'Python' 카테고리의 다른 글

집합(set)의 remove(), discard() 차이  (0) 2022.02.09
Comments