9 - 5 DATA
9 - 5 DATA
  • 55
  • 169 260
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
มุมมอง: 41

วีดีโอ

Unlock Python's Power: Essential Built-In Functions Explained! Part2
มุมมอง 42 หลายเดือนก่อน
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
มุมมอง 142 หลายเดือนก่อน
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
มุมมอง 72 หลายเดือนก่อน
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
มุมมอง 4512 หลายเดือนก่อน
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
มุมมอง 4462 หลายเดือนก่อน
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
มุมมอง 6382 หลายเดือนก่อน
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
มุมมอง 53 หลายเดือนก่อน
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
มุมมอง 483 หลายเดือนก่อน
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!!!
มุมมอง 1492 ปีที่แล้ว
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
มุมมอง 16K2 ปีที่แล้ว
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
มุมมอง 5803 ปีที่แล้ว
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
มุมมอง 6K3 ปีที่แล้ว
AutoCAD2021: How To Create Roof Plan in AutoCAD Part 2
AutoCAD2021: How To Create Roof Elevation in AutoCAD Part 1
มุมมอง 2.8K3 ปีที่แล้ว
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 TH-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. th-cam.com/video/LkIEezw9iv8/w-d-xo.html th-cam.com/video/1AnB5A2djs8/w-d-xo.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 3 ปีที่แล้ว

    *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 3 ปีที่แล้ว

    *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 3 ปีที่แล้ว

    *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 3 ปีที่แล้ว

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

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 3 ปีที่แล้ว

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

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 3 ปีที่แล้ว

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

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t 3 ปีที่แล้ว

    *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?