'Can you print something in python without any built in functions or modules?
I know about sys.stdout.write() but that uses the sys module, input("string") woulden't be valid either since it's a built-in function.
Solution 1:[1]
It used to be possible in Python 2, because print was a language statement, while it is a built in function in Python 3. But there is only a very tiny difference between statements and built in functions or types. And IMHO trying to avoid built ins is close to non sense in Python.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Serge Ballesta |
