[python] 내장함수

덴장·2024년 1월 24일

python

목록 보기
6/30

#input 입력을 받는 함수

#language

#dir 어떤 객체를 넘겼을때 그 객체가 어떤 변수와 함수를 가지고 있는지 표시

from random import* #외장함수
print(dir())

sampleList = [1,2,3,4]
print(dir(sampleList))

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

profile
개발자

0개의 댓글