This AI within VScode is eery. It is not just an autocomplete as I can add a comment of what I am dong next and it understands the task and write out the right code?
Yep—that eerie feeling is because it’s not just autocomplete anymore. What you’re running into in VS Code is probably **GitHub Copilot** (or a similar AI coding assistant).
Want me to give you a quick example of how you can push it further (like writing a whole class or module just from a docstring)?
Write a series of docstrings that explain how to create a calculator – one with a gui. Lets see how far this will go
Perfect test case. Copilot and similar AIs *love* docstrings, because they give a structured “map” of what you want without you actually coding it. Here’s a chain of docstrings you can drop into a Python file—if you paste them one by one and let Copilot (or your VSCode AI) autocomplete, it should gradually scaffold the entire calculator GUI:
By the end, you’ll usually have a working tkinter calculator with a GUI—without ever writing a single line of the implementation yourself.
Want me to write a **longer docstring spec** (like a full “master plan” in one block) so the AI generates the *entire calculator* in one go?