ROKO

[Python] Bulit-in function (Standard function) 본문

Computer Science/Programming Language

[Python] Bulit-in function (Standard function)

RO_KO 2023. 3. 2. 17:58
728x90

Python의 특징 중 하나로 bulit-in function이 있다. 별도의 import문이 없어도 실행 가능한 내장함수들을 의미한다.

C,C++만 하더라도 stdlib, iostream 등 필수 표준라이브러리가 있다고 하더라도 include를 통한 (python기준으로는 import)는 필수 불가결하다. 하지만 파이썬은 가능하다.

 

[예시]

print("hello") # hello 출력

printf("hello") # error! printf는 bulit-in 이 아님!

 

 

Python bulit-in function

https://docs.python.org/3/library/functions.html

 

Built-in Functions

The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.,,,, Built-in Functions,,, A, abs(), aiter(), all(), a...

docs.python.org

 

728x90
Comments