Xah Talk Show 2025-03-30 Ep637 Wolfram logo, lisp logo, python logo, why python sucks

- timestamp
- 36:02 lojban logo ban
- 44:54 the taichi lisp logo
- 48:23 guido von rossum dolt
- emacs command updates
- Xah Emacs Blog
- Xah Emacs Commands
- Mathematica Logo History
- History of Python Logo
- Lisp Needs a Logo
- LISP Logo
- Lambda Logo Tour
- Logo Design in Software Industry
- Python Length Function Not Method, and the Idiocy and Arrogance of Python Guido Von Rossum
- Why Python Sucks
xlist = [3,4,5,6] print(len(xlist)) # 4 len(xlist) # why not # xlist.length # or # xlist.length() print( xlist.index(3) ) # 0 # why not # index(xlist, 3)
[3, 4, 5] .forEach((x) => console.log( x + 1 )) arra
