Is Python Becoming Pinyin?
reuven
54 points
76 comments
June 01, 2026
Related Discussions
Found 5 related stories in 82.8ms across 9,294 title embeddings via pgvector HNSW
- (An ((Even Better) Lisp) Interpreter (In Python)) vismit2000 · 44 pts · May 31, 2026 · 46% similar
- Someone just converted Claude Leark from TypeScript to 100% Python iamsyr · 19 pts · March 31, 2026 · 46% similar
- If AI writes your code, why use Python? indigodaddy · 344 pts · May 11, 2026 · 45% similar
- PyTheory Is Awesome zdw · 14 pts · March 25, 2026 · 42% similar
- Async Python Is Secretly Deterministic KraftyOne · 69 pts · April 03, 2026 · 41% similar
Discussion Highlights (11 comments)
noon-raccoon
Python has wonderful set of libraries so it is probably going to stay with us for a while. However, I suspect major takeover by Typescript (despite I like Python more).
usernametaken29
It’s funny because I consider myself a Python veteran - about a decade or so of Python, and I had exactly the same thought. 99% of my code now is Java. It’s much less pleasant but the “enterprise nobs” just work. Static types, fast with Graal, awesome threading, and the quality of tooling are great - those are all areas that Python severely lacks in and has no interest expanding into, because it is a “fast prototype language”. That fast prototyping can now be done in annoying but stable languages like Java or Go or Rust (or NET or Swift). So that cuts a massive leg from Python. Who will bother to maintain the ecosystem if a lot of senior folks are leaving in doves? No idea honestly
DonsDiscountGas
> Why ask AI to write its output in a dynamic language with relatively slow execution (i.e., Python)? So that it's easy for humans to review it. Same reason as ever. Obviously Python isn't always the correct choice, but the overlap with cases where vibe coding is the correct choice is pretty high. Also wtf is Pinyin?
kleiba2
If we're not writing code by hand anymore anyway, why not skip programming languages altogether and have the AI output machine code right away?
noon-raccoon
If you don't know what is Pinyin I googled it for you (I didn't know what it is): Pinyin is a system for writing Mandarin Chinese sounds using the Latin alphabet. Pinyin is commonly used for learning Chinese pronunciation and for typing Chinese characters.
sthix
Interesting take. Python is my first language, but when working with AI for my latest desktop project I just used Rust because of the performance.
spjt
Why teach people bad habits starting out? Probably dating myself specifically but I started out with Pascal, and I'm glad I did.
drob518
The post focuses on Python, but I think it touches on an interesting question before skipping past it: ideally, what language would be best for our AIs to be programming in? The article says Rust. But can we do better? Rust has strong typing and memory guarantees which I think are important, but it’s also slower to compile. If we’re going to be doing agentic programming, where the agent is operating in a tight loop, iterating on the code, then it seems like we’d want something that can be faster to run after creating new code. Effectively, we’d want the agentic equivalent of a Lisp REPL, but optimized for the agent, or at least a language that compiles quickly, as it is run. This is one of the roles that Python plays today. Perhaps there is also a slow, sophisticated compiler that digests the same syntax and spits out the fastest , most secure code possible once the agent has iterated its way to the final answer.
keybored
> Of course, the topic on everyone’s mind was AI. Some against their will. > In a world where all coding is agentic, and where we are asking the agents to produce Rust, we might ask a deep and more disturbing question: Why learn Python at all? What’s the point of learning a programming language that an increasingly small group of people will be writing and using? All the same structure everywhere. - Now with the AI - (Not the future; the present) - Everything is changing - But colon points to potential problem: You’re worried about the future of Python. But not programming? Be a part of the problem or the solution. But no, the author will say, one can’t stop a tsunami . > Python has a future. But in a world of agentic coding, it might be increasingly for teaching the basics of software engineering and providing AI with high-quality training data, rather than for direct coding of applications. It’s still worth learning and knowing Python — but it’s also worth doubling down on basic software-engineering principles, which we’ll increasingly be using to instruct and judge AI agents. Remember to mention AI Era, Agentic Era, or some other statement that is on the one hand completely obvious in the author’s mind but bears repeating like a mantra. Yeah Python will be used to teach arithmetic before we spend the rest of our lives with a calculator. The conclusion is as banal as all the other fluff thought pieces.
maxheiber
The post is built around a metaphor based on a misunderstanding. The following is not a "well-actually", but is to illustrate that the real world is often stranger and harder to predict and categorize than we might expect. From the post: > '''Many people don’t realize this, but children in China first learn Latin characters, which they use to spell out Chinese phonetically, using a system called “pinyin.”''' My understanding is that children in China learn many characters before pinyin. Characters are mapped to meanings first, and only later to sounds. Fwiw even in my Chinese-as-a-second-language course we were thrown into Chinese characters from the beginning. Also, of course, Chinese characters have been around for thousands of years and sound-based writing for Chinese is very new. The techniques to get leverage and build up understanding of characters gradually are incredibly varied. Just as the ways we relate to code in the future are unlikely to be familiar or easy to predict.
jim33442
These articles keep coming up, and the author never actually tries agentic coding in Rust vs Python. You will probably find that the LLM does better with Python for kinda similar reasons as humans. It's succinct and can be rerun quickly while you iterate. There's also the difference in training data. If/when a human needs to review code or intervene, same applies. Can't say I've tried Rust, but my AI tooling has always been noticeably worse at doing comparable tasks in C++ instead of Python. Not just toy examples but real systems in prod with testing, maintenance, oncall, feature rollouts, etc.