Skip to content

Python Basic

GitDeveloperKim edited this page Feb 6, 2022 · 15 revisions

input

  • input().split()

map

  • input 값이 10 20 30 40 50 일 때
  • x = list(map(int, input().split()))

주석 달기

  • '#' 주석 내용
  • ''' 여러줄의 주석 내용 '''
Clone this wiki locally