\u003C/figure>\n\u003C!-- /wp:image -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>\u003Ca href=\"https://insights.stackoverflow.com/trends?tags=python\">Trending tags on Stackoverflow.com\u003C/a>\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Although Python has been around since the 1.0 release in 1991, its usage has ballooned in recent years. Indeed, as our former data scientist David Robinson \u003Ca href=\"https://stackoverflow.blog/2017/09/06/incredible-growth-python/\">noted\u003C/a>, since 2012, it has risen above the five other major languages (C++, PHP, Java, JavaScript and C#) in usage as estimated by the number of Stack Overflow question views per month. \u003Ca href=\"https://www.tiobe.com/tiobe-index/\">TIOBE’s 2021 index\u003C/a> ranks Python as third in popularity at 10.86%, rapidly gaining on C and Java (16.34% and 11.29% respectively). Today, 44 % of \u003Ca href=\"https://insights.stackoverflow.com/survey/2020#technology\">developers\u003C/a> and technologists around the world are using Python. \u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Until recently the language design and development was lead by a single person—Dutch computer scientist \u003Ca href=\"https://en.wikipedia.org/wiki/Guido_van_Rossum\">Guido van Rossum\u003C/a>, who stepped down as Python’s “Benevolent Dictator For Life” in 2018 but has remained an active contributor to this \u003Ca href=\"https://github.com/python/cpython/graphs/contributors\">day\u003C/a>.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-who-is-using-it\">\u003Cstrong>Who is using it?\u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Python is more or less ubiquitous—it would be faster to list industries that \u003Cem>don’t\u003C/em> use it in some form. While it’s not the language of choice for consumer applications like 3D games or mobile apps, even companies developing these applications frequently use Python for tools and utilities. It is also commonly embedded into software products for automation and scripting purposes—for example, in the VFX field, nearly all of the major software packages (Maya, 3Ds Max, Houdini, Cinema 4D, Blender, and Nuke) have embedded Python interpreters, allowing users to add functionality or automate tasks. It’s used more or less everywhere on Earth and, well, \u003Ca href=\"https://nasa.github.io/fprime/\">even on Mars\u003C/a>.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>In fact, if you’re reading this on a Mac, you already have Python \u003Ca href=\"https://apple.stackexchange.com/questions/406244/will-macos-big-sur-remove-the-default-python-installation-for-good\">installed\u003C/a> on your computer—just go to Terminal, type ‘python’, and away you go...\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-who-is-it-for\">\u003Cstrong>Who is it for?\u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-students\">\u003Cstrong>Students\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>The use of short English keywords instead of symbols makes Python particularly friendly for beginners. See the \u003Ca href=\"https://pythonconquerstheuniverse.wordpress.com/2009/10/03/python-java-a-side-by-side-comparison/\">example\u003C/a> below. \u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:table -->\n\u003Cfigure class=\"wp-block-table\">\u003Ctable>\u003Ctbody>\u003Ctr>\u003Ctd>Python\u003C/td>\u003Ctd>Java\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd># print the integers from 1 to 9\u003Cbr>for i in \u003Ccode>range(1,10): \u003C/code>\u003Cbr> \u003Ccode>print i\u003C/code>\u003C/td>\u003Ctd>// print the integers from 1 to 9\u003Cbr>for (int i = 1; i < 10; i++){ \u003Cbr> System.out.println(i);\u003Cbr>}\u003C/td>\u003C/tr>\u003C/tbody>\u003C/table>\u003C/figure>\n\u003C!-- /wp:table -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Additionally, Python handles a lot of memory management \u003Ca href=\"https://stackoverflow.com/questions/11596371/how-does-python-memory-management-work\">automatically\u003C/a>, so you’ll spend less time dealing with pointers and references and so on than in a language like C++.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>It comes bundled with a free IDE (integrated development environment), \u003Ca href=\"https://en.wikipedia.org/wiki/IDLE\">IDLE\u003C/a>, so you can get started quickly. In case you’re wondering, yes, IDLE is a reference to \u003Cem>Monty Python’s \u003C/em>Eric Idle—if you use Python you’re going to be bombarded with references to vintage British comedy.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-developers-who-prioritize-ease-of-programming-over-execution-speed\">\u003Cstrong>Developers who prioritize ease of programming over execution speed\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>While Python typically runs slower than other common languages like C++ or Java, it’s often much quicker to write—indeed, \u003Ca href=\"https://www.python.org/doc/essays/comparisons/\">some estimates suggest\u003C/a> a typical program in Python is three to five times shorter than its Java equivalent and five to ten times shorter than the C++ version.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>This is one of the reasons it’s often used as a “support language”—software developers rely on it for \u003Ca href=\"https://www.python.org/about/apps/\">tasks\u003C/a> like build control, automated testing, and bug tracking. For the same reason, it’s also used for \u003Ca href=\"https://stackoverflow.com/questions/37084289/what-is-meant-by-prototyping-in-python\">prototyping\u003C/a>—code can be “hacked together” quickly to test ideas, before perhaps rewriting in a more performant language.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-developers-working-with-text-or-numbers\">\u003Cstrong>Developers working with text or numbers\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Python’s \u003Ca href=\"https://people.duke.edu/~ccc14/sta-663/TextProcessingSolutions.html\">powerful\u003C/a> String and List manipulation functions make it a great choice for anyone working with text or numbers. And it’s a great tool for exploring data. \u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>The fact that it doesn’t need compiling means you can rapidly iterate on a program, and, by running Python \u003Ca href=\"https://realpython.com/run-python-scripts/#:~:text=A%20widely%20used%20way%20to,installation%2C%20and%20then%20hit%20Enter%20.\">interactively\u003C/a>, you can intuitively manipulate data step-by-step, examining it at each stage.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Python’s core functionality can be extended with a huge arsenal of ‘packages’, many of which are widely used by the scientific and academic communities, as well as fintech and engineering. These include the venerable \u003Ca href=\"https://numpy.org/\">NumPy\u003C/a> (mathematical functions and data analysis), \u003Ca href=\"https://www.scipy.org/\">SciPy\u003C/a> (for science), \u003Ca href=\"http://matplotlib.org/\">Matplotlib\u003C/a> (data visualization) and \u003Ca href=\"https://pandas.pydata.org/\">Pandas\u003C/a> (data analysis), and more recently \u003Ca href=\"https://www.tensorflow.org/\">TensorFlow\u003C/a> and \u003Ca href=\"https://keras.io/\">Keras\u003C/a> (Machine Learning/AI), as well as \u003Ca href=\"https://pypi.org/\">tens of thousands of others\u003C/a>.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-web-developers\">\u003Cstrong>Web developers\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Another key area of Python use is backend development. It has built-in support for common protocols like HTML, XML, and JSON, and frameworks like \u003Ca href=\"https://www.djangoproject.com/\">Django\u003C/a>, \u003Ca href=\"https://flask.palletsprojects.com/en/1.1.x/\">Flask\u003C/a>, and \u003Ca href=\"http://bottlepy.org/docs/dev/\">Bottle\u003C/a> are used widely—for example, \u003Ca href=\"https://www.reddit.com/r/learnprogramming/comments/34d7cl/why_is_reddit_written_in_python_why_not_ruby_or/\">Reddit\u003C/a>’s backend is Python. Python powers advanced content management, email \u003Ca href=\"https://towardsdatascience.com/automate-email-with-python-1e755d9c6276\">automation\u003C/a>, and more.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-why-you-shouldn-t-learn-it\">\u003Cstrong>Why you shouldn't learn it\u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>There’s a lot to like about Python, but it’s not always the perfect tool for the job.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Perhaps most importantly, Python is an \u003Cem>interpreted \u003C/em>language, as opposed to a \u003Cem>compiled\u003C/em> language like C++. While that means there’s no sitting around waiting for your code to compile, it also means the computer has to do extra work every time the program runs, inherently limiting performance. So you’re probably not going to be writing the next blockbuster 60FPS first-person shooter in Python, but it’s perfect for situations like data manipulation where you’re likely to spend more time writing the program than running it.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Additionally, Python’s somewhat unusual syntax means that—if it’s your first language—not all of the knowledge you gain will be transferable to other languages, although many of the underlying concepts are identical. For example, the reduced reliance on\u003Ca href=\"https://lerner.co.il/2018/06/08/python-parentheses-primer/\"> brackets and braces\u003C/a>, the use of English words instead of symbols, and the enforced usage of whitespace mean that a program in Python may be \u003Ca href=\"http://rosettacode.org/wiki/Category:Python\">visually structured\u003C/a> in a very different way to the equivalent code in Java or C++.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>However, these downsides are often a small price to pay for the many benefits, as evidenced by its ubiquity.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-key-concepts\">\u003Cstrong>Key concepts\u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>The core philosophies are summarized—in Pythonic fashion—in “\u003Ca href=\"https://en.wikipedia.org/wiki/Zen_of_Python\">The Zen Of Python\u003C/a>.” These include:\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>“\u003Ca href=\"https://docs.python-guide.org/writing/style/\">Readability\u003C/a> counts\u003C/li>\u003Cli>Simple is better than complex\u003C/li>\u003Cli>There should be one—and preferably only one—obvious way to do it”\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>In case you were wondering, The Zen Of Python is available in catchy musical form \u003Ca href=\"https://www.youtube.com/watch?v=i6G6dmVJy74\">here\u003C/a>.\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-resources\">\u003Cstrong>Resources\u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-official\">\u003Cstrong>Official\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>The \u003Ca href=\"https://docs.python.org/3/tutorial/\">official tutorial\u003C/a> is a quick primer on all the basics, perfect for getting up and running quickly.\u003C/li>\u003Cli>The \u003Ca href=\"https://docs.python.org/3/reference/index.html\">Python language reference\u003C/a> provides full documentation in a no-nonsense manner that is “terse, but attempts to be exact and complete.”\u003C/li>\u003Cli>Following the official \u003Ca href=\"https://www.python.org/dev/peps/pep-0008/\">PEP-8 Style Guide\u003C/a> will make your code more readable to other programmers, including the most crucial audience of all—your future self. \u003C/li>\u003Cli>The \u003Ca href=\"https://www.python.org/about/gettingstarted/\">official site\u003C/a> also offers an enormous wealth of information, tutorials, and also features curated content in dozens of languages.\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-entry-level\">\u003Cstrong>Entry-level\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>\u003Ca href=\"https://www.learnpython.org/\">LearnPython.org\u003C/a> offers a quick, well-thought-out series of basic lessons, and provides a friendly browser-based Python interface to experiment with.\u003C/li>\u003Cli>\u003Ca href=\"https://codetheblocks.com/tutorials/introduction\">Code The Blocks\u003C/a> provides an engaging series of beginner exercises, using a browser-based Python interpreter to manipulate a 3D scene.\u003C/li>\u003Cli>FreeCodeCamp.org offers a free \u003Ca href=\"https://www.youtube.com/watch?v=rfscVS0vtbw\">video course\u003C/a> that will take you from novice to intermediate in four hours.\u003C/li>\u003Cli>The classic \u003Ca href=\"https://openbookproject.net/thinkcs/python/english3e/\">How to Think Like a Computer Scientist\u003C/a> is available in a Python 3 edition that will get you up to speed on Python syntax while providing insights that will be valuable in any language.\u003C/li>\u003Cli>While not Python-exclusive, \u003Ca href=\"https://projecteuler.net/\">Project Euler\u003C/a> offers a set of challenges that are perfect for flexing your new-found Python muscles. The site is a sequence of over 700 mathematical puzzles, to which the answer is always a single integer, and the problems range from the trivial to the extremely difficult. You can of course find hints and tips on Stack Overflow—no cheating though!\u003C/li>\u003Cli>\u003Ca href=\"http://rosalind.info/about/\">Project Rosalind\u003C/a> offers a similarly structured set of problems—this time from the field of Bioinformatics—that function as both an introduction to Python and molecular biology.\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-advanced\">\u003Cstrong>Advanced\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>\u003Ca href=\"https://docs.python-guide.org\">The Hitchhiker’s Guide to Python!\u003C/a> A hands-on guide for prob \u003C/li>\u003Cli>\u003Ca href=\"https://wiki.python.org/moin/MovingToPythonFromOtherLanguages\">Moving To Python From Other Languages\u003C/a> offers a quick guide to Python concepts and gotchas.\u003C/li>\u003Cli>Rafe Kettler’s \u003Ca href=\"https://github.com/RafeKettler/magicmethods/blob/master/magicmethods.pdf\">A Guide to Python’s Magic Methods\u003C/a> offers a detailed explanation of “Magic Methods”—the Python-specific built-in functions like `__init__()` that you may have been using without even thinking about\u003C/li>\u003Cli>Python is generally considered to be simple to learn if you already understand the general concepts of programming… although \u003Ca href=\"https://www.stavros.io/tutorials/python/\">Learn Python in 10 Minutes\u003C/a> is a pretty bold claim!\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:heading {\"level\":3} -->\n\u003Ch3 id=\"h-other-resources\">\u003Cstrong>Other resources\u003C/strong>\u003C/h3>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>If you didn’t have time for the 10 minutes one, how about\u003Cstrong> \u003C/strong>\u003Ca href=\"https://www.youtube.com/watch?v=I2wURDqiXdM\">Learn Python in 5 Minutes\u003C/a>? It actually runs over by a minute or so, but it’s still a pretty impressive speedrun of the basics.\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:embed {\"url\":\"https://www.youtube.com/watch?v=I2wURDqiXdM\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"responsive\":true,\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n\u003Cfigure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\">\u003Cdiv class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=I2wURDqiXdM\n\u003C/div>\u003C/figure>\n\u003C!-- /wp:embed -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>At the other end of the spectrum, \u003Ca href=\"https://www.youtube.com/watch?v=OSGv2VnC0go&ab_channel=NextDayVideo\">Transforming Code into Beautiful, Idiomatic Python\u003C/a> features expert tips for writing “Pythonic” code, which takes full advantage of some of its elegant features rather than simply translating from another language.\u003C/li>\u003Cli>A charming lecture from Python creator \u003Ca href=\"https://www.youtube.com/watch?v=7kn7NtlV6g0\">Guido van Rossum\u003C/a>\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:embed {\"url\":\"https://www.youtube.com/watch?v=7kn7NtlV6g0\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"responsive\":true,\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n\u003Cfigure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\">\u003Cdiv class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7kn7NtlV6g0\n\u003C/div>\u003C/figure>\n\u003C!-- /wp:embed -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-communities\">\u003Cstrong>Communities \u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>\u003Ca href=\"https://www.pythonistacafe.com/\">PythonistaCafe\u003C/a> is a friendly, moderated community of Python developers of all skill levels.\u003C/li>\u003Cli>Python has an active Discord channel at \u003Ca href=\"https://discord.com/invite/python\">https://discord.com/invite/python\u003C/a>\u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:heading -->\n\u003Ch2 id=\"h-top-conferences\">\u003Cstrong>Top conferences\u003C/strong>\u003C/h2>\n\u003C!-- /wp:heading -->\n\n\u003C!-- wp:list -->\n\u003Cul>\u003Cli>International \u003Ca href=\"https://pycon.org/\">PyCon\u003C/a> events.\u003C/li>\u003Cli>Other \u003Ca href=\"https://wiki.python.org/moin/PythonConferences\">Python conferences\u003C/a> by country \u003C/li>\u003C/ul>\n\u003C!-- /wp:list -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>More about Python, or in fact any other technology tag you can find on the Stack Overflow Tag \u003Ca href=\"https://stackoverflow.com/tags/python/info\">info page. \u003C/a>\u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:image {\"id\":18449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg src=\"https://stackoverflow.blog/wp-content/uploads/2021/07/language-stats-python-march-2021-852x630.png\" alt=\"\" class=\"wp-image-18449\"/>\u003C/figure>\n\u003C!-- /wp:image -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>Interested in job opportunities with Python? Check out those on our \u003Ca href=\"https://stackoverflow.com/jobs?tl=python\">job board\u003C/a>? \u003C/p>\n\u003C!-- /wp:paragraph -->\n\n\u003C!-- wp:paragraph -->\n\u003Cp>\u003Cem>Learning or teaching Python and got a recommendation for our list? Add yours in the comments section! \u003C/em>\u003C/p>\n\u003C!-- /wp:paragraph -->","html","2021-07-14T14:26:18.000Z",{"current":1345},"getting-started-with-python",[1347,1355,1360],{"_createdAt":1348,"_id":1349,"_rev":1350,"_type":1351,"_updatedAt":1348,"slug":1352,"title":1354},"2023-05-23T16:43:21Z","wp-tagcat-code-for-a-living","9HpbCsT2tq0xwozQfkc4ih","blogTag",{"current":1353},"code-for-a-living","Code for a Living",{"_createdAt":1348,"_id":1356,"_rev":1350,"_type":1351,"_updatedAt":1348,"slug":1357,"title":1359},"wp-tagcat-getting-started",{"current":1358},"getting-started","getting started",{"_createdAt":1348,"_id":1361,"_rev":1350,"_type":1351,"_updatedAt":1348,"slug":1362,"title":1363},"wp-tagcat-python",{"current":1363},"python","Getting started with... Python",[1366,1372,1378,1384],{"_id":1367,"publishedAt":1368,"slug":1369,"sponsored":12,"title":1371},"370eca08-3da8-4a13-b71e-5ab04e7d1f8b","2025-08-28T16:00:00.000Z",{"_type":10,"current":1370},"moving-the-public-stack-overflow-sites-to-the-cloud-part-1","Moving the public Stack Overflow sites to the cloud: Part 1",{"_id":1373,"publishedAt":1374,"slug":1375,"sponsored":1334,"title":1377},"e10457b6-a9f6-4aa9-90f2-d9e04eb77b7c","2025-08-27T04:40:00.000Z",{"_type":10,"current":1376},"from-punch-cards-to-prompts-a-history-of-how-software-got-better","From punch cards to prompts: a history of how software got better",{"_id":1379,"publishedAt":1380,"slug":1381,"sponsored":12,"title":1383},"65472515-0b62-40d1-8b79-a62bdd2f508a","2025-08-25T16:00:00.000Z",{"_type":10,"current":1382},"making-continuous-learning-work-at-work","Making continuous learning work at work",{"_id":1385,"publishedAt":1386,"slug":1387,"sponsored":12,"title":1389},"1b0bdf8c-5558-4631-80ca-40cb8e54b571","2025-08-21T14:00:25.054Z",{"_type":10,"current":1388},"research-roadmap-update-august-2025","Research roadmap update, August 2025",{"count":1391,"lastTimestamp":1392},15,"2025-02-18T18:01:19Z",["Reactive",1394],{"$sarticleModal":1395},false,["Set"],["ShallowReactive",1398],{"sanity-rP4HnEYNWU3oewjla6kxIWlj2IopGpP8d_ZnLKtsCAo":-1,"sanity-comment-wp-post-18440-1756478736885":-1},"/2021/07/14/getting-started-with-python"]