Best of PythonDecember 2021

  1. 1
    Article
    Avatar of quastorQuastor Daily·4y

    How Khan Academy Rewrote their Backend

    Khan Academy recently went through a massive rewrite of their old Python 2 monolith with a services-oriented backend written in Go. We’ll be summarizing the technical choices, execution and results of the rewrite. Plus, a couple awesome tech snippets on How Etsy built their bidding system for Etsy Ads and how Databricks uses Scala at Scale.

  2. 2
    Article
    Avatar of kdnuggetsKDnuggets·4y

    Write Clean Python Code Using Pipes

    Pipe is a Python library that enables you to use pipes in Python. A pipe ( | ) passes the results of one method to another method. Pipe makes my code look cleaner when applying multiple methods to a Python iterable. Since Pipe only provides a few methods, it is also very easy to learn Pipe.

  3. 3
    Article
    Avatar of dzDZone·4y

    Top 7 Web Development Languages To Use In 2022

    Today, web development is seemingly a promising job. If you are a newcomer in this field, the nuisance here is where to start or which web development languages you should learn. This article from Designveloper will well equip you with fundamental knowledge so that you can choose the right language for future jobs.

  4. 4
    Article
    Avatar of mlmMachine Learning Mastery·4y

    Functional Programming In Python

    Functional programming is a declarative paradigm. It is different from imperative paradigm that programs are built by applying and composing functions. The benefit of functional programming is to make your program less error-prone. Without the side effects, it is more predictable and easier to see the outcome. We also no need to worry about one part of the program is interfering another part.

  5. 5
    Article
    Avatar of inPlainEngHQPython in Plain English·4y

    3 Basic Constructs to Master Any Programming Language

    3 Basic Constructs to Master Any Programming Language. Learn the 3 basic constructs to master any programming language. Sequential, Branching, and Looping are the three basic constructs that you’ll find in most programming languages. Understanding these means you are ready to step forward with creating massive codes.

  6. 6
    Article
    Avatar of inPlainEngHQPython in Plain English·4y

    Python 🐍 Project for Beginners

    Learn how to run your very first Python program. Practice using basic Python programming functions. The tasks we’re going to execute will be quite simple but one small mistake could make this practice session much more difficult than it needs to be so be sure to take your time and double-check your work.

  7. 7
    Article
    Avatar of inPlainEngHQPython in Plain English·4y

    5 More Useful Scripts in Python — 3

    Harendra Verma shares 5 Python scripts or 5 mini-projects that you can create to brush up on your Python skills. Get the IP address and hostname of a website. Split files into chunks. Use the progress bar to show how many images are resized.

  8. 8
    Article
    Avatar of jetbrainsJetBrains·4y

    Learn in 1 Hour: Object-Oriented Programming in Python

    Learn in 1 Hour: Object-Oriented Programming in Python. This is the second day in the series of blog posts about what you can do in just an hour at JetBrains Academy. We decided to dedicate the next four days to the intricacies of particular programming languages, starting with Python.

  9. 9
    Article
    Avatar of towardsdevTowards Dev·4y

    The Power of SQL

    Structured Query Language or SQL was created by Edgard Codd in 1970 at IBM in order to deal with the large amounts of data that was coming to the world on a regular basis. It has been over 50 years since SQL has come to be and yet it still one of the most widely utilized programming languages today. A recent analysis from dataquest.io showed that out of 32,000 jobs that mention the key word ‘data’ in it, SQL is one of. the top programming languages to have as a skill set when applying to jobs.

  10. 10
    Article
    Avatar of inPlainEngHQPython in Plain English·4y

    Web Scraping with Selenium in Python

    Learn to identify elements to get content, take screenshots and run JavaScript. Change the size of the window and capture screenshots. To prevent blockages, use proxies and special headers. With our headless browser, you can do all of that and more. Python3 is required for the code to function.