Content Menu

Standing on the shoulders of giants

프로필사진
  • Write
  • Manage
  • 방명록

Standing on the shoulders of giants

  • 분류 전체보기 (54)
    • 통번역 (1)
    • Book (5)
      • Computer Science (3)
      • Not Computer Science (0)
    • computer science & engineer (2)
    • Basic (4)
    • infrastructure (5)
      • Network (1)
      • Linux (1)
    • Cloud (8)
      • Kubernetes (1)
      • DevOps (0)
      • MicroService (2)
    • Machine Learning (1)
      • Tensorflow (1)
    • Program language (5)
      • Java (3)
      • Javascript (0)
      • Python (1)
    • Bigdata (0)
    • Database (3)
    • Framework & Library & Tool (17)
      • Apache Hadoop (1)
      • Spring&SpringBoot (10)
      • Thymeleaf (1)
      • D3 (1)
      • Bower (1)
      • etc (2)
    • Raspberrypi (0)
    • _Odds and ends (2)
  • Visite
검색하기 폼

Python Basic Grammar Cheat-Sheet

Calculate print(15/7) # 나눗셈, 2 print(15//7) # 몫, 2 print(15%7) # 나머지, 1 print(2**3) # 제곱근, 8Variable Type Type String Boolean Integer Float v = 1 print(type(v)) # int Tuple, Dictionary, Set Tuple 수정이 안되는 엘리먼트 집합 자료형 # define tuple = () tupleA = tuple() tupleA = (1, 2) tupleB = (3, 4) print( tupleA(0) ) # 1, 인덱스 접근 가능 tupleA + tupleB # (1, 2, 3, 4) tupleA * 2 # (1, 2, 1, 2) # use case ## switch x..

Program language/Python 2021. 4. 8. 23:13
« 1 »

티스토리툴바