Ayodele Adeniyithe-ayodele-adeniyi.hashnode.dev·Aug 14, 2024Predicting House Prices: How Size Influences Market ValueIn this project, say I worked for a client who wanted to create a model to predict apartment prices in Buenos Aires, focusing on properties under $500,000 USD. To streamline the data importing and cleaning process, I wrote a custom function to ensure...Discuss·27 readsprediction
Emeron Marcelleemerondomain.hashnode.dev·Jul 7, 2024Exploring Essential Python FunctionsWelcome to the exciting world of Python! Whether you're a seasoned coder or just starting out, Python's built-in functions are here to make your life easier and your code more powerful. These versatile tools can help you perform a myriad of tasks—fro...Discuss#Python-functions
Fanny NyayicforBuilding With Pythonbuildingwithpython.hashnode.dev·Jun 9, 2024My Experience with Python's Built-in FunctionsPython is often praised for its simplicity and readability, making it an ideal choice for beginners and experienced programmers alike. One of the aspects that makes Python so accessible and powerful is its extensive collection of built-in functions. ...Discuss·4 likesPythonPython
Sakib Bin Kamalwww.developerchronicles.com·Jun 2, 2024Python Cheat Sheet: Essential Guide for BeginnersThis cheat sheet is designed as a helpful guide for those who have a solid understanding of Python basics. It serves as a convenient reference while coding in Python. Variables and Strings Variables are used as containers to store data values in pyth...Discuss·33 readsPython
JMN jmn950-dev.hashnode.dev·May 19, 2024Arrr-g Matey! Sailing the Code Seas with Args and Kwargs: A Pirate's Guide to Function Adventure!In Python, we have two handy ways to pass arguments to functions: args and kwargs. Args is like a basket where you can put any number of arguments without naming them, while kwargs is like a basket where you can put named arguments. We use them when ...DiscussPython
John Mainpynerds.hashnode.dev·Mar 28, 2024*args and **kwargs in PythonIn this article you will learn how to use the single and double asterisk operators, to define functions that can take an arbitrary number of arguments. But before we dive on that, we first need to understand how arguments works in Python. There are ...DiscussPython
John Mainpynerds.hashnode.dev·Mar 20, 2024Python functools moduleOriginal Article The functools module in the standard library provides functions and classes for manipulating functions. The primary tool defined in the module is the partial class, which as we will see in a while, allows the partial application of ...Discuss·10 likes·59 readsPython
Emmanuel Oyiboemminex.hashnode.dev·Feb 21, 2024How to Use Python Lambda FunctionsThis in-depth tutorial will teach you how to use Python Lambda functions. You’ll understand why they are helpful in simplifying code and in the context of functional programming. Also, you’ll get acquainted with basic use cases of lambda functions, a...Discuss·10 likes·36 readsPython 3
John Mainpynerds.hashnode.dev·Feb 19, 2024Python FunctionsPython Functions - original article A function groups related statements that perform a specific task. The statements inside a given function are only executed when the function is called. A Function typically has three parts i.e. declaration, implem...Discuss·10 likes·38 readsPython
Anuradha Guptatechno101.hashnode.dev·Jan 29, 2024Arguments in Python FunctionsIn Python, functions are defined using the def keyword followed by the function name and a set of parentheses containing any arguments the function requires. Arguments are values that are passed to the function when it is called, and they can be used...DiscussPython