9 - 5 DATA
9 - 5 DATA
  • 55
  • 168 565
Python User-Defined Functions: Create and Use Custom Functions Effectively
Unleash the power of Python with User-Defined Functions! This video is your one-stop guide to crafting reusable functions that streamline your code and make you a Python pro.
Here's what you'll discover:
The Why of User-Defined Functions: Break free from repetitive code! Learn how functions promote code modularity, readability, and maintainability, making your Python programs easier to understand and manage.
Building Your First Function: We'll walk you through the step-by-step process of defining functions in Python. Grasp the syntax, explore function arguments, and understand the magic of docstrings for clear function documentation.
From Simple to Complex: We won't stop at basic examples! This video dives into practical function creation, using a square function and a factorial function to solidify your understanding.
Function Flexibility: User-defined functions aren't one-trick ponies. Explore how to incorporate default arguments for added convenience and how to return multiple values from a single function, making your functions even more versatile.
Putting It All Together: Witness the power of user-defined functions in action! We'll create functions to solve real-world problems, demonstrating how to call them and leverage their reusability.
By the end of this video, you'll be a user-defined function champion! You'll be able to:
Confidently define functions to encapsulate specific tasks.
Craft well-documented functions using clear parameter definitions and docstrings.
Leverage function arguments and return values to create powerful and flexible functions.
Apply user-defined functions to solve programming problems efficiently.
Write cleaner, more maintainable Python code that follows best practices.
Ready to take your Python skills to the next level? Watch now and subscribe for more in-depth Python tutorials!
#python #programming #functions #pythonfunctions #userdefinedfunctions #pythontips #coding #learnpython #pythonforbeginners #programmingtutorials
Переглядів: 37

Відео

Unlock Python's Power: Essential Built-In Functions Explained! Part2
Переглядів 4Місяць тому
Sick of writing the same code over and over again in Python? Built-in functions are your secret weapon! This comprehensive video unlocks the potential of these powerful tools, making you a Python master of common tasks. Get ready to: Effortlessly perform calculations: Discover built-in functions like sum, max, and min to tackle basic math operations on sequences of numbers. No more manual calcu...
Unlock Python's Power: Essential Built-In Functions Explained! Part 1
Переглядів 14Місяць тому
Sick of writing the same code over and over again in Python? Built-in functions are your secret weapon! This comprehensive video unlocks the potential of these powerful tools, making you a Python master of common tasks. Get ready to: Effortlessly perform calculations: Discover built-in functions like sum, max, and min to tackle basic math operations on sequences of numbers. No more manual calcu...
Unlock Python's Power: Essential Built-In Functions Explained! Part 3
Переглядів 7Місяць тому
Sick of writing the same code over and over again in Python? Built-in functions are your secret weapon! This comprehensive video unlocks the potential of these powerful tools, making you a Python master of common tasks. Get ready to: Effortlessly perform calculations: Discover built-in functions like sum, max, and min to tackle basic math operations on sequences of numbers. No more manual calcu...
Master List Creation: Python's Powerful List Comprehension
Переглядів 7962 місяці тому
Unveiling the Power of List Comprehension in Python. Ever feel like you're writing the same loop over and over again just to create lists in Python? What if there was a way to achieve the same results in a single line of code, making your code cleaner, more readable, and potentially even more efficient? Enter list comprehension, a powerful Python feature that lets you condense list creation log...
Break, Continue, and Pass Statements in Python: Master Loop Control Techniques
Переглядів 4502 місяці тому
Welcome to the "Break, Continue, and Pass Statements in Python" section of our course. In this video, we'll explore how these statements allow us to control the flow of loops in Python. In Python, break, continue, and pass statements are used to alter the flow of control in loops. The break statement lets us exit a loop prematurely if a certain condition is met. The continue statement allows us...
While Loops in Python: Master Repeated Execution with Conditional Logic
Переглядів 4452 місяці тому
Welcome to the "While Loops in Python" section of our course! In this video, we delve into while loops, a fundamental concept in Python programming that allows repeated code execution based on a condition. We'll start by understanding the basics of while loops and explore practical examples, such as counting from 1 to 5 and simulating a die roll until a 6 is rolled. Here's a quick breakdown: Wh...
For Loops in Python: Master Iteration with Lists, Range, and Nested Loops
Переглядів 6372 місяці тому
Welcome back to another section of our Python course! In this video, we explore the power of for loops in Python, a fundamental tool for iterating over sequences. We'll start with basic for loops to iterate over lists, use the range() function to execute code multiple times, and dive into nested for loops to handle multiple sequences simultaneously. Here's a quick breakdown: For Loop with List:...
Control Flow in Python: Master If, Else, Elif, and Nested Statements Easily
Переглядів 5022 місяці тому
Welcome to the "Control Flow in Python" section of our course! In this video, we'll explore how control flow statements like if, else, elif, and nested if statements allow us to guide our program's execution based on specific conditions. Control flow statements act like signposts in your code, determining the path it takes. We start with the if statement, which executes a block of code only if ...
Python Objects Explained: Learn How to Use Built-In and Custom Classes
Переглядів 62 місяці тому
Welcome to the "Python Objects" section of our course. In this video, we'll delve into the concept of objects in Python and how they are used to represent data and behavior. In Python, everything is an object. An object is a container that encapsulates data (attributes) and functions (methods) that operate on that data. We'll start by understanding the fundamentals of objects and their importan...
Python Variables Explained: Learn Variable Assignment and Naming Conventions
Переглядів 52 місяці тому
Welcome to the "Variables" section of our course. In this video, we'll explore how variables are used to store data in Python and introduce some commonly used practices for creating variables. In Python, a variable is a name that refers to a value stored in memory. Variables are essential for storing data that can be manipulated and accessed throughout your program. We'll start by understanding...
Python Operators Explained: Learn Assignment, Arithmetic, Comparison, and Logical Operators Part2
Переглядів 13 місяці тому
Welcome to the "Python Operators" section of our course. In this video, we'll explore the various operators available in Python and how to use them with different data types. Python operators are special symbols or keywords that perform specific operations on operands. We'll cover assignment operators, arithmetic operators, comparison operators, and logical operators. First, you'll learn about ...
Python Operators Explained: Learn Assignment, Arithmetic, Comparison, and Logical Operators Part1
Переглядів 63 місяці тому
Welcome to the "Python Operators" section of our course. In this video, we'll explore the various operators available in Python and how to use them with different data types. Python operators are special symbols or keywords that perform specific operations on operands. We'll cover assignment operators, arithmetic operators, comparison operators, and logical operators. First, you'll learn about ...
Python Data Types Explained: Understand and Use Data Types Effectively in Python
Переглядів 33 місяці тому
Welcome to our in-depth video on "Data Types in Python." In this session, we will explore the various data types available in Python and how to work with them effectively. We'll start by understanding what data types are and why they are crucial in programming. Each value in Python has a specific data type, defining the kind of data it represents and the operations that can be performed on it. ...
Jupyter Notebook Tutorial: Master Interactive Data Analysis with Python
Переглядів 173 місяці тому
Welcome to the Jupyter Notebook tutorial! Explore the power of Jupyter Notebook for interactive data analysis with Python. Learn its features, including live code execution, Markdown support, and seamless integration with data visualization libraries like Matplotlib and Seaborn. Whether you're a beginner or an experienced data scientist, this tutorial covers everything you need to know to get s...
Python Installation and Anaconda Navigator Setup: Essential Guide for Beginners
Переглядів 473 місяці тому
Python Installation and Anaconda Navigator Setup: Essential Guide for Beginners
Python for Data Analysis: Essential Skills for Aspiring Data Analyst.
Переглядів 253 місяці тому
Python for Data Analysis: Essential Skills for Aspiring Data Analyst.
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 2
Переглядів 113 місяці тому
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 2
CRYPTO TRADING: TRADING DOJI CANDLESTICK PATTERN SUCCESSFULLY!!!
Переглядів 1482 роки тому
CRYPTO TRADING: TRADING DOJI CANDLESTICK PATTERN SUCCESSFULLY!!!
CRYPTO TRADING: TRADE HAMMER AND SHOOTING STAR CANDLESTICKS AND WIN TRADE EFFORTLESSLY 90%!!!
Переглядів 1422 роки тому
CRYPTO TRADING: TRADE HAMMER AND SHOOTING STAR CANDLESTICKS AND WIN TRADE EFFORTLESSLY 90%!!!
Latest Google Adwords 350$ threshold Trick 2021 | $350 USA New Google Ads Tricks 2021
Переглядів 16 тис.2 роки тому
Latest Google Adwords 350$ threshold Trick 2021 | $350 USA New Google Ads Tricks 2021
CRYPTO TRADING: BOLLINGER BANDS TRADING STRATEGY THAT WINS 90% OF MY TRADING IN 2021.🔥🔥🔥🔥🔥
Переглядів 1572 роки тому
CRYPTO TRADING: BOLLINGER BANDS TRADING STRATEGY THAT WINS 90% OF MY TRADING IN 2021.🔥🔥🔥🔥🔥
CRYPTO TRADING: MACD TRADING STRATEGY THAT WINS 90% OF MY TRADING IN 2021.
Переглядів 3493 роки тому
CRYPTO TRADING: MACD TRADING STRATEGY THAT WINS 90% OF MY TRADING IN 2021.
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 1
Переглядів 5773 роки тому
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 1
Cryptocurrency - Introduction to Binance Window Application.
Переглядів 2443 роки тому
Cryptocurrency - Introduction to Binance Window Application.
CRYPTOCURRENCY TRADING - ANATOMY OF JAPANESE CANDLESTICK
Переглядів 1293 роки тому
CRYPTOCURRENCY TRADING - ANATOMY OF JAPANESE CANDLESTICK
Risk management - Protect Your Trading Capital In Cryptocurrency Trading
Переглядів 1873 роки тому
Risk management - Protect Your Trading Capital In Cryptocurrency Trading
Cryptocurrency - 10 Things I Wish I Knew Before I Started Trading Cryptocurrency.
Переглядів 3913 роки тому
Cryptocurrency - 10 Things I Wish I Knew Before I Started Trading Cryptocurrency.
AutoCAD2021: How To Create Roof Plan in AutoCAD Part 2
Переглядів 6 тис.3 роки тому
AutoCAD2021: How To Create Roof Plan in AutoCAD Part 2
AutoCAD2021: How To Create Roof Elevation in AutoCAD Part 1
Переглядів 2,8 тис.3 роки тому
AutoCAD2021: How To Create Roof Elevation in AutoCAD Part 1

КОМЕНТАРІ

  • @georgerether79
    @georgerether79 Місяць тому

    How did the Height of the horizontal mortar change into 275mm or 0.275

  • @georgerether79
    @georgerether79 Місяць тому

    Nice work mister

  • @JoelJoseShibu
    @JoelJoseShibu 2 місяці тому

    Nice man 😊

  • @AguEmmanuel-kn8qt
    @AguEmmanuel-kn8qt 4 місяці тому

    Pls how did u get the 0.275

    • @temidayoafolabi7344
      @temidayoafolabi7344 2 місяці тому

      for the vertical, the height of the block is 225mm. Now add the 25mm mortar at the top and also the one at the bottom of the block. You will have 25mm + 225mm + 25mm = 275mm, You can check the diagram at 2:44 . Check the red boxes.

  • @divinennate3226
    @divinennate3226 Рік тому

    Pls how did you arrive at 1.3 and 1.1 as percentage of 30 and 10 respectively

    • @temidayoafolabi7344
      @temidayoafolabi7344 2 місяці тому

      This is how, assume the wet volume is 1 cubic meter, we are told that the dry volume is 30% more that the wet volume. What this means is that you will add 30% of wet volume to the 1 cubic meter value of the wet volume. see, Wet vol. = 1m3 Dry vol. = (30% of 1) + 1 =(30/100 * 1) + 1 =(0.3 * 1) + 1 = 0.3 + 1 = 1.3. therefore, for every 1 m3 of wet volume, we have 1.3 m3 of dry volume. 1.3 in other words is a constant.

  • @abbafary1445
    @abbafary1445 Рік тому

    The vid is educative sir kudos. My Question here is, how did uou arrived at getting 0.275 vertical mortar? Thank you best regards

  • @alsemi-back-up579
    @alsemi-back-up579 Рік тому

    TOO COMPLICATED!!!!!!!!!!!!! HOW MANY BAGS OF MASONARY FOR HOW MANY BLOCKS!!!!!!! IT IS NOT ROCKET SCIENCE MAN!!!!!!!!!!!!!!

  • @folexkendrick
    @folexkendrick Рік тому

    Please does this account for the plastering too?

  • @robertiravonga559
    @robertiravonga559 Рік тому

    AUTOCAD ARCHITECTURE MAKES WORK EASIER

  • @patricialahai5856
    @patricialahai5856 Рік тому

    Thanks so much

  • @adewumifatai1569
    @adewumifatai1569 Рік тому

    You’re making sense but completely dark why 🙃

  • @adewumifatai1569
    @adewumifatai1569 Рік тому

    Nothing show here bro

  • @alunzidavid7641
    @alunzidavid7641 2 роки тому

    Good explanation but the colour of the roof is not clear, thanks.

  • @hakansayel
    @hakansayel 2 роки тому

    Your method is very primitive. You could solve this problem in 1 minute with 3d design.

  • @garysukhnanan4756
    @garysukhnanan4756 2 роки тому

    👊

  • @Bluesky_construct2567
    @Bluesky_construct2567 2 роки тому

    You remain the one person to bring justice to this estimation on this UA-cam so far. By the way, kindly avail us how you arrive at 0.275 You swift response will be highly appreciated. Thanks a lot

  • @portport9139
    @portport9139 2 роки тому

    Thanks for the help, I needed a refresher.

  • @theslickking-majura5799
    @theslickking-majura5799 2 роки тому

    Sir kindly explain how you arrived at 0.275

  • @agubataemmanuel3550
    @agubataemmanuel3550 2 роки тому

    I really enjoyed the series. Please,I would appreciate if you finish it up.

  • @johngoka3366
    @johngoka3366 2 роки тому

    Your roof layer is too dark

  • @tushabejoseph7377
    @tushabejoseph7377 2 роки тому

    And by calculation how did you get the 10 blocks ? Minus assuming

  • @tushabejoseph7377
    @tushabejoseph7377 2 роки тому

    How did you obtain 0.0637 in the calculation of bed mortar/horiz mortar??? . explain am lost from dt very point

  • @alexandermulilison5844
    @alexandermulilison5844 2 роки тому

    Your video is so white oga

  • @KevinPolin
    @KevinPolin 2 роки тому

    Thank You... Short and Sweet!!

  • @ajisebutublessing2929
    @ajisebutublessing2929 2 роки тому

    The roof plan is just disappearing anyhow

  • @block9292
    @block9292 2 роки тому

    In my video I have shared how to calculate materials for making cement blocks. ua-cam.com/video/LkIEezw9iv8/v-deo.html ua-cam.com/video/1AnB5A2djs8/v-deo.html

  • @sefaazilah1648
    @sefaazilah1648 2 роки тому

    Amazing. This tutorial series has really been helpful to me. Great job. God bless your works🙏🙏🙏

  • @kakowinnie45
    @kakowinnie45 2 роки тому

    Thanks

  • @sefaazilah1648
    @sefaazilah1648 2 роки тому

    Great👍👍🙏

  • @downloadablevibes178
    @downloadablevibes178 2 роки тому

    Thank you boss

  • @garpeeroberts5580
    @garpeeroberts5580 2 роки тому

    Hi, how did you obtained the 0.275 in the vertical mortar area calculations?

  • @asadhussain2293
    @asadhussain2293 2 роки тому

    Thanks

  • @keynabo2485
    @keynabo2485 2 роки тому

    Thank you for sharing

  • @gowthamiv4841
    @gowthamiv4841 2 роки тому

    when the hatch command used it will not fastly select the object which need to be hatched? Instead entire will select specially in the wall hatch in plan view.

    • @9-5data
      @9-5data 2 роки тому

      can you please rephrase your question for better understanding?

    • @jessekanayo
      @jessekanayo Рік тому

      @@9-5data I think what she means is, when you select the place that needs to be hatched, it hatches the whole floor plan, instead of the particular object you clicked on, I am experiencing that too, how do I solve it

  • @irfanirz9588
    @irfanirz9588 2 роки тому

    Bro please make a vedeo section of roof please

  • @madmanasra
    @madmanasra 2 роки тому

    Easy and simple 👌 Thank u

  • @wizzzy4422
    @wizzzy4422 2 роки тому

    If you reading this, please I would like a response. Does the time frame have any impact on the trades beyond adjusting the display of the the candle chart and indicators? Referring to "you have to pick a time frame you want to trade"

    • @9-5data
      @9-5data 2 роки тому

      Time frame matters a lot. Types of traders are categorised based on the time frame they trade. check guide below. scalpers - 5 min to15min Day trader - 15min to 1 day. Swing trader - 1day to weekly Investor - weekly to yearly.

  • @CobbsCapital
    @CobbsCapital 2 роки тому

    Really enjoyed the insights you gave us, keep putting out the great content! 👍

  • @banjikanmi9444
    @banjikanmi9444 2 роки тому

    This is awesome very effective

  • @user-pi7gn2dd5q
    @user-pi7gn2dd5q 2 роки тому

    *CRYPTO 👆👆👆👆CURRENCY IS THE BEST WAY TO MAKE IT IN LIFE SO QUICK GOD WILL KEEP BLESSING YOU TILL THE ETERNITY SIR I WAS SHOCK WHEN I SAW MY PROFIT RETURN PAYMENT OF 0.08 BTC FROM YOU JUST NOW SIR I TOOK A RISK AND YOU MADE IT REAL FOR ME I WILL ALWAYS RECOMMENDING YOU TILL THE ETERNITY I WORK WITH YOU IN JUST 1 HOUR AND I MADE IT FOR REAL I AM FOREVER GRATEFUL SIR*

  • @user-pi7gn2dd5q
    @user-pi7gn2dd5q 2 роки тому

    *CRYPTO 👆👆👆👆CURRENCY IS THE BEST WAY TO MAKE IT IN LIFE SO QUICK GOD WILL KEEP BLESSING YOU TILL THE ETERNITY SIR I WAS SHOCK WHEN I SAW MY PROFIT RETURN PAYMENT OF 0.08 BTC FROM YOU JUST NOW SIR I TOOK A RISK AND YOU MADE IT REAL FOR ME I WILL ALWAYS RECOMMENDING YOU TILL THE ETERNITY I WORK WITH YOU IN JUST 1 HOUR AND I MADE IT FOR REAL I AM FOREVER GRATEFUL SIR*

  • @user-pi7gn2dd5q
    @user-pi7gn2dd5q 2 роки тому

    *CRYPTO 👆👆👆👆CURRENCY IS THE BEST WAY TO MAKE IT IN LIFE SO QUICK GOD WILL KEEP BLESSING YOU TILL THE ETERNITY SIR I WAS SHOCK WHEN I SAW MY PROFIT RETURN PAYMENT OF 0.08 BTC FROM YOU JUST NOW SIR I TOOK A RISK AND YOU MADE IT REAL FOR ME I WILL ALWAYS RECOMMENDING YOU TILL THE ETERNITY I WORK WITH YOU IN JUST 1 HOUR AND I MADE IT FOR REAL I AM FOREVER GRATEFUL SIR*

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 2 роки тому

    *Continue👆👆👆your good work sir I confirm another profit of 0.08 crypto from my god sent hacker just now..*

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 2 роки тому

    *Continue👆👆👆your good work sir I confirm another profit of 0.08 crypto from my god sent hacker just now..*

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 2 роки тому

    *Continue👆👆👆your good work sir I confirm another profit of 0.08 crypto from my god sent hacker just now..*

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 2 роки тому

    *Continue👆👆👆your good work sir I confirm another profit of 0.08 crypto from my god sent hacker just now..*

  • @obadex
    @obadex 3 роки тому

    Great work keep it up

  • @mathewwangsu4251
    @mathewwangsu4251 3 роки тому

    2 minutes vedeos n u r stretching for 5 minutes

  • @nataliaanne9001
    @nataliaanne9001 3 роки тому

    interesting

  • @kalueric6348
    @kalueric6348 3 роки тому

    yeah really learnt something new, do you also work on 3d designs?