0

As we know in Python 3.0 turned print in the function form so I want to know where is the file with source of print function is located

Akap official
  • 11
  • 1
  • 2

1 Answers1

0

You seems to ask about builtin function. The python interpreter has predefined functions that are always ready for use.

https://hg.python.org/cpython/file/tip/Python/bltinmodule.c

JongHyeon Yeo
  • 736
  • 7
  • 17