Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 335 Bytes

python.md

File metadata and controls

20 lines (15 loc) · 335 Bytes

Python 3

  • Seems to be based on Wirth's languages combined with functional.

e.g. From Oberon 2015:

WHILE x > y DO x := x - y; u := u + v
ELSIF x < y DO y := y - x; v := v + u
END

Which Python does use. I find these constructs really weird and difficult to follow.

while true:
    pass
else:
    pass