Python Wiki
Advertisement
  • Typing
from __future__ import *

raises
SyntaxError: not a chance

  • The program is not syntactically correct, so if that line exists in the program, it will not run.


  • Typing
import __hello__

prints out
Hello World!


  • Typing
import this

prints out the Zen of Python.


  • Typing
import antigravity

opens up a webcomic.

Advertisement