Python/Js 코딩테스트 kit _ 1.입출력
3063 단어 JavaScript코테pythonJavaScript
Python/Js 코딩테스트 kit
1. 입출력
- python
# 입력 받은것 공백을 기준으로 분할. 리스트로 반환
a,b = input().split()
# 한줄에 여러 숫자를 입력받아서 리스트에 넣기
a = list(map(int,input().split()))
# sys
import sys
sys.stdin.readline().rsplit('\n')
#n개를 입력받기
# 2(n)
# a
# b
# c
n = int(input())
for i in range(n):
arr.append(str(sys.stdin.readline().rstrip())) # ['a','b','c']
- Javascript
Under Construction
Author And Source
이 문제에 관하여(Python/Js 코딩테스트 kit _ 1.입출력), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@vain6567/PythonJs-코딩테스트-kit
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- python
# 입력 받은것 공백을 기준으로 분할. 리스트로 반환
a,b = input().split()
# 한줄에 여러 숫자를 입력받아서 리스트에 넣기
a = list(map(int,input().split()))
# sys
import sys
sys.stdin.readline().rsplit('\n')
#n개를 입력받기
# 2(n)
# a
# b
# c
n = int(input())
for i in range(n):
arr.append(str(sys.stdin.readline().rstrip())) # ['a','b','c']
- Javascript
Under Construction
Author And Source
이 문제에 관하여(Python/Js 코딩테스트 kit _ 1.입출력), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@vain6567/PythonJs-코딩테스트-kit저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)