1. 입출력
    1. 입력 : input()
    2. 출력 : print()
  2. 변수
    1. 예약어 확인
      1. import keyword
      2. print(keyword.kwlist)
    2. 데이터 형
      1. int
      2. float
      3. str
      4. bool
  3. 연산자 : /, //, %, **
  4. 선택 : if, elif, else
  5. 반복 : for, while
  6. 기타 제어 : continue, break, pass
  7. 주석문 : #, “””, ”’
error: Content is protected !!