+ 1
PRINT in PYTHON, how?
In other programming language we import or include a module/header file in order to use println or cout or printf functions... How is that possible that we can directly use print without importing any such modules in PYTHON? Are all the basic functions already imported by default?
1 Answer
+ 7
print(dir(__builtins__))
# Shows you Python's built-in default stuff. The functions are at the end.