본문 바로가기
python

python

by csue 2021. 4. 27.

What is python?

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics.
- What is Python? Executive Summary

 

python 은 high-level 의 동적 프로그래밍 언어이자 객체 지향의 인터프리터 언어이다.
python 은 문법이 쉽다. 다른 프로그래밍 언어에서는 {} 를 사용하여 영역을 지정하지만, python 은 들여쓰기(indent) 를 사용하여 영역을 지정하여 가독성도 좋다. 개발 속도가 빠르고 높은 확장성과 접착성을 가지고 있다는 장점을 가지고 있다.  

 

Data structure in python

python 의 자료구조들로는 아래와 같은 종류들이 있다.

 

 

ref) Data Structures in Python— A brief Introduction

 

'python' 카테고리의 다른 글

dictionary  (0) 2021.04.27
list  (0) 2021.04.27
if & while  (0) 2021.04.27
기타 함수와 연산자  (0) 2021.04.27
string  (0) 2021.04.27