Python input 받기
input
input이 있으면, input부터 잘 되었는지 확인하고 로직을 시작하자 !!
#정수 1개를 입력받을 때
n = int(input())
#string 1개를 입력 받을 때
s = input()
#띄어쓰기가 된 여러개의 값을 입력받을 때
s = input().split()
#띄어쓰기로 구분되지 않은 정수를 변수로 받기
lst = list(map(int,input()))
#정수 여러개를 입력받을 때
lst = list(map(int,input().split()))
#각 변수에 입력값을 받을 때
n,m = map(int,input().split())
# n만큼 값을 불러와야할 때
'''
3
1 2 3
4 5 6
7 8 9
'''
## 1.
n = int(input())
lst = []
for i in range(n):
lst.append(list(map(int,input().split())))
## 2.
n = int(input())
lst = [list(map(int,input().split())) for _ in range(n)]
# 그리드 만들기
lst = [[0]*3*4] # 얕은 복사
#
n,m=3,4
lst = [[0]*n for _ in range(m)]
Author And Source
이 문제에 관하여(Python input 받기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@holawan/Python-input-받기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)