# A piece of Python source follows, then a bit of text #!/usr/bin/env python3 def f(i, j=2): print(i, i * j) def g(i): a = f(i, j=17) + 1 b = f(i, j=17) + 2 print(a, b) class Amy(NonHuman): def sheldon_compat(self): return true if __name__ == "__main__": g(i) print("hello", "world") print("the answer", 42) print("sheldon", Amy()) # A block of text (documentation, maybe)? # # | First input | Second input | Result | # | 1 | 1 | 1 | # | 1 | banana | boom | # | banana | 42 | tangerine | # | orange | 0xf0000000000 | tangerine |