프로그래밍

[Python] 내장함수 본문

Python/파이썬 기초

[Python] 내장함수

시케 2023. 11. 6. 09:13
728x90
반응형

내장함수

내장 함수란 파이썬 인터프리터에 내장되어 있어 언제든지 사용할 수 있는 함수이다

외부에 따로 저장해 둔 모듈에서 불러오는 것이 아니라 import가 필요하지 않다

 

A
abs()
aiter()
all()
anext()
any()
ascii()

B
bin()
bool()
breakpoint()
bytearray()
bytes()

C
callable()
chr()
classmethod()
compile()
complex()

D
delattr()
dict()
dir()
divmod()

E
enumerate()
eval()
exec()

F
filter()
float()
format()
frozenset()

G
getattr()
globals()

H
hasattr()
hash()
help()
hex()

I
id()
input()
int()
isinstance()
issubclass()
iter()


L
len()
list()
locals()

M
map()
max()
memoryview()
min()

N
next()

O
object()
oct()
open()
ord()

P
pow()
print()
property()

R
range()
repr()
reversed()
round()

S
set()
setattr()
slice()
sorted()
staticmethod()
str()
sum()
super()

T
tuple()
type()

V
vars()

Z
zip()

_
__import__()

728x90
반응형

'Python > 파이썬 기초' 카테고리의 다른 글

[Python] 사용자 함수  (0) 2023.11.06
[Python] 메서드  (0) 2023.11.06
[Python] 파이썬의 제어문  (0) 2023.11.05
[Python] 파이썬의 연산자  (0) 2023.11.05
[Python] 기본 입출력  (0) 2023.11.05
Comments