본문 바로가기

SweetPotato1024/Python.PyCharm

print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)

반응형

Python -> built-in Functions 검색하면 C언어로 만들어진 파이썬 함수 코드 확인 가능 

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

 

Built-in Functions — Python 3.10.0 documentation

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. abs(x) Return the absolute value of a number. The argument may be an integer, a floating poin

docs.python.org

 

print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)

 

 

반응형

'SweetPotato1024 > Python.PyCharm' 카테고리의 다른 글

함수(function) 용어 정리  (0) 2021.10.24
while : if continue ≠ while  (0) 2021.10.12
if-else : 실행순서  (0) 2021.10.12