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
  • 21
  • 1
  • 3

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
  • 879
  • 1
  • 10
  • 18