MOWMITAmowmita.hashnode.devยทJul 4, 2024The hax() function in PythonThe hax() function is a built-in function of Python3 which converts an integer number into its corresponding hexadecimal form. So there will be question in your mind what is hexadeciamal and what is built-in functions. So for your concern - Hexadecim...Python
Rashid Ul Haqrashid-ul-haq.hashnode.devยทJul 3, 2024๐ Unlock the Power of __call__ in Python! ๐We all know about the init function in Python, but have you ever encountered the call function? ๐ค This special method can turn instances of your class into callable objects, making them act like functions!Let's dive into an example to see this in ac...Python InsightsPython
TaKeya McFaddenkeyathecoder.hashnode.devยทMar 8, 2024Navigating Your Travels: A Guide to Using Python's sorted() FunctionHey, fellow coding enthusiasts! Today, I'm excited to delve into the intricacies of Python and share some insights on how to effectively use the sorted() function. In this blog post, we'll explore a practical example โ sorting travel data using the s...Python
Supreet Vatssupreet.hashnode.devยทSep 2, 2023Commonly Used Built-in JavaScript FunctionThe Most Common Built-In JavaScript Functions for Beginners JavaScript is a powerful programming language that can be used to create interactive web pages, mobile apps, and more. One of the things that makes JavaScript so versatile is its large libra...44 readsJavaScript
Nikhil Akkinikhilakki.inยทMay 13, 2023Map, Zip & Filter | Understanding Python built-in functions.In Python, map(), zip(), and filter() are built-in functions that are used to perform different operations on iterables like lists, tuples, and sets. map() function: This function applies a given function to each item of an iterable and returns a ne...1.6K readsPython DevelopmentPython
Lyndi Castrejonjustdevthings.hashnode.devยทMay 12, 2023How Does strpos() Work In PHP?What Is strpos()? strpos() is a built-in function in PHP that is used to find the position of the first occurrence of a substring within a string. Understanding strpos() And Its Arguments strpos() accepts three arguments: The first argument is the s...PHP
Augustine Ritaaugustinerita.hashnode.devยทFeb 10, 202314 Python Built-in Function That Will Help Increase Your Productivity.What You Will Learn: We all want a special way to make complex things become easier to accomplish. Python built-in functions help programmers achieve complex things they do all the time with one function. Here are some Advantages of using Python buil...119 readsPython
Namya Shahbigsmoke.hashnode.devยทSep 13, 2022Python Built In Functionsabs() # Returns the absolute value of a number x = abs(-7.25) print(x) # OUTPUT # 7.25 all() # Returns True if all items in an iterable object are true mylist = [True, True, True] x = all(mylist) print(x) # OUTPUT # True any() # Retur...10 likesยท57 readsPython
Anupam Majhianupammajhi.hashnode.devยทJun 10, 2016R: Useful Built-in FunctionsGeneral builtins() # List all built-in functions options() # Set options to control how R computes & displays results ?NA # Help page on handling of missing data values abs(x) # The absolute value of "x" append() # Add elements to a ve...R Language