9 - 5 DATA
9 - 5 DATA
  • 55
  • 169 138
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
zhlédnutí: 41

Video

Unlock Python's Power: Essential Built-In Functions Explained! Part2
zhlédnutí 4Před 2 měsíci
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
zhlédnutí 14Před 2 měsíci
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
zhlédnutí 7Před 2 měsíci
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
zhlédnutí 796Před 2 měsíci
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
zhlédnutí 451Před 2 měsíci
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
zhlédnutí 446Před 2 měsíci
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
zhlédnutí 638Před 2 měsíci
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
zhlédnutí 502Před 2 měsíci
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
zhlédnutí 6Před 2 měsíci
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
zhlédnutí 5Před 3 měsíci
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
zhlédnutí 1Před 3 měsíci
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
zhlédnutí 6Před 3 měsíci
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
zhlédnutí 3Před 3 měsíci
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
zhlédnutí 17Před 3 měsíci
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
zhlédnutí 48Před 3 měsíci
Python Installation and Anaconda Navigator Setup: Essential Guide for Beginners
Python for Data Analysis: Essential Skills for Aspiring Data Analyst.
zhlédnutí 25Před 3 měsíci
Python for Data Analysis: Essential Skills for Aspiring Data Analyst.
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 2
zhlédnutí 11Před 3 měsíci
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 2
CRYPTO TRADING: TRADING DOJI CANDLESTICK PATTERN SUCCESSFULLY!!!
zhlédnutí 149Před 2 lety
CRYPTO TRADING: TRADING DOJI CANDLESTICK PATTERN SUCCESSFULLY!!!
CRYPTO TRADING: TRADE HAMMER AND SHOOTING STAR CANDLESTICKS AND WIN TRADE EFFORTLESSLY 90%!!!
zhlédnutí 142Před 2 lety
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
zhlédnutí 16KPřed 2 lety
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.🔥🔥🔥🔥🔥
zhlédnutí 157Před 2 lety
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.
zhlédnutí 349Před 3 lety
CRYPTO TRADING: MACD TRADING STRATEGY THAT WINS 90% OF MY TRADING IN 2021.
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 1
zhlédnutí 578Před 3 lety
AutoCAD2021: How to Create Building Elevation in AutoCAD 2021 Part 1
Cryptocurrency - Introduction to Binance Window Application.
zhlédnutí 244Před 3 lety
Cryptocurrency - Introduction to Binance Window Application.
CRYPTOCURRENCY TRADING - ANATOMY OF JAPANESE CANDLESTICK
zhlédnutí 129Před 3 lety
CRYPTOCURRENCY TRADING - ANATOMY OF JAPANESE CANDLESTICK
Risk management - Protect Your Trading Capital In Cryptocurrency Trading
zhlédnutí 187Před 3 lety
Risk management - Protect Your Trading Capital In Cryptocurrency Trading
Cryptocurrency - 10 Things I Wish I Knew Before I Started Trading Cryptocurrency.
zhlédnutí 391Před 3 lety
Cryptocurrency - 10 Things I Wish I Knew Before I Started Trading Cryptocurrency.
AutoCAD2021: How To Create Roof Plan in AutoCAD Part 2
zhlédnutí 6KPřed 3 lety
AutoCAD2021: How To Create Roof Plan in AutoCAD Part 2
AutoCAD2021: How To Create Roof Elevation in AutoCAD Part 1
zhlédnutí 2,8KPřed 3 lety
AutoCAD2021: How To Create Roof Elevation in AutoCAD Part 1

Komentáře

  • @georgerether79
    @georgerether79 Před měsícem

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

  • @georgerether79
    @georgerether79 Před měsícem

    Nice work mister

  • @JoelJoseShibu
    @JoelJoseShibu Před 2 měsíci

    Nice man 😊

  • @AguEmmanuel-kn8qt
    @AguEmmanuel-kn8qt Před 4 měsíci

    Pls how did u get the 0.275

    • @temidayoafolabi7344
      @temidayoafolabi7344 Před 2 měsíci

      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 Před rokem

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

    • @temidayoafolabi7344
      @temidayoafolabi7344 Před 2 měsíci

      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 Před rokem

    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 Před rokem

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

  • @folexkendrick
    @folexkendrick Před rokem

    Please does this account for the plastering too?

  • @robertiravonga559
    @robertiravonga559 Před rokem

    AUTOCAD ARCHITECTURE MAKES WORK EASIER

  • @patricialahai5856
    @patricialahai5856 Před rokem

    Thanks so much

  • @adewumifatai1569
    @adewumifatai1569 Před rokem

    You’re making sense but completely dark why 🙃

  • @adewumifatai1569
    @adewumifatai1569 Před rokem

    Nothing show here bro

  • @alunzidavid7641
    @alunzidavid7641 Před 2 lety

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

  • @hakansayel
    @hakansayel Před 2 lety

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

  • @garysukhnanan4756
    @garysukhnanan4756 Před 2 lety

    👊

  • @Bluesky_construct2567

    You remain the one person to bring justice to this estimation on this CZcams 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 Před 2 lety

    Thanks for the help, I needed a refresher.

  • @theslickking-majura5799

    Sir kindly explain how you arrived at 0.275

  • @agubataemmanuel3550
    @agubataemmanuel3550 Před 2 lety

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

  • @johngoka3366
    @johngoka3366 Před 2 lety

    Your roof layer is too dark

  • @tushabejoseph7377
    @tushabejoseph7377 Před 2 lety

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

  • @tushabejoseph7377
    @tushabejoseph7377 Před 2 lety

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

  • @alexandermulilison5844

    Your video is so white oga

  • @KevinPolin
    @KevinPolin Před 2 lety

    Thank You... Short and Sweet!!

  • @ajisebutublessing2929

    The roof plan is just disappearing anyhow

  • @block9292
    @block9292 Před 2 lety

    In my video I have shared how to calculate materials for making cement blocks. czcams.com/video/LkIEezw9iv8/video.html czcams.com/video/1AnB5A2djs8/video.html

  • @sefaazilah1648
    @sefaazilah1648 Před 2 lety

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

  • @kakowinnie45
    @kakowinnie45 Před 2 lety

    Thanks

  • @sefaazilah1648
    @sefaazilah1648 Před 2 lety

    Great👍👍🙏

  • @downloadablevibes178
    @downloadablevibes178 Před 2 lety

    Thank you boss

  • @garpeeroberts5580
    @garpeeroberts5580 Před 2 lety

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

  • @asadhussain2293
    @asadhussain2293 Před 2 lety

    Thanks

  • @keynabo2485
    @keynabo2485 Před 2 lety

    Thank you for sharing

  • @gowthamiv4841
    @gowthamiv4841 Před 2 lety

    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 Před 2 lety

      can you please rephrase your question for better understanding?

    • @jessekanayo
      @jessekanayo Před rokem

      @@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 Před 2 lety

    Bro please make a vedeo section of roof please

  • @madmanasra
    @madmanasra Před 2 lety

    Easy and simple 👌 Thank u

  • @wizzzy4422
    @wizzzy4422 Před 2 lety

    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 Před 2 lety

      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 Před 2 lety

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

  • @banjikanmi9444
    @banjikanmi9444 Před 2 lety

    This is awesome very effective

  • @user-pi7gn2dd5q
    @user-pi7gn2dd5q Před 2 lety

    *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 Před 2 lety

    *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 Před 2 lety

    *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 Před 2 lety

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

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t Před 2 lety

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

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t Před 2 lety

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

  • @user-bi7yc4jp5t
    @user-bi7yc4jp5t Před 2 lety

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

  • @obadex
    @obadex Před 3 lety

    Great work keep it up

  • @mathewwangsu4251
    @mathewwangsu4251 Před 3 lety

    2 minutes vedeos n u r stretching for 5 minutes

  • @nataliaanne9001
    @nataliaanne9001 Před 3 lety

    interesting

  • @kalueric6348
    @kalueric6348 Před 3 lety

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