- 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