- Видео 40
- Просмотров 15 710
Data With David
Добавлен 18 мар 2022
Day 13: Error Handling | 15 Days of Python with Daily Lessons, Practice, & Project
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects.
Day 13: We’ll cover error handling, a crucial concept for writing robust Python programs. You’ll learn how to manage errors gracefully using `try`, `except`, `else`, and `finally` blocks, handle specific exceptions, and even create your own custom exceptions. By the end of this lesson, you’ll be equipped to handle unexpected errors and make your code more reliable.
Code and resources can be found here: github.com/david-ikenna-ezekiel/15-Days-of-P...
Day 13: We’ll cover error handling, a crucial concept for writing robust Python programs. You’ll learn how to manage errors gracefully using `try`, `except`, `else`, and `finally` blocks, handle specific exceptions, and even create your own custom exceptions. By the end of this lesson, you’ll be equipped to handle unexpected errors and make your code more reliable.
Code and resources can be found here: github.com/david-ikenna-ezekiel/15-Days-of-P...
Просмотров: 6
Видео
Day 12: Modules and Packages | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 122 часа назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 12: We’ll explore modules and packages, which help you organize code into reusable components. You’ll learn how to import and use both built-in ...
Day 11: File Handling | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 177 часов назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 11: We’ll explore file handling, which is essential for working with data stored in external files. You’ll learn how to open, read, write, and d...
Day 10: Working with Strings | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 779 часов назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 10: We’ll focus on strings, one of the most commonly used data types in Python. Strings are used to store and manipulate text. Today, you’ll lea...
Day 09: Functions | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 9912 часов назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 09: We’ll explore functions, which are reusable blocks of code that perform specific tasks. Functions help make your code more organized, modula...
Day 08: "For" & "While" Loops | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 16414 часов назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 08: We’ll explore loops, which allow you to repeat code multiple times. You’ll learn how to use `for` and `while` loops, create nested loops, an...
Day 07: Conditional Statements | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 2916 часов назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 07: We’ll explore conditional statements in Python, which allow you to control the flow of your program by making decisions based on certain con...
Day 06: Data Structures - Dictionaries | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 10019 часов назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 06: We’ll explore dictionaries, a powerful data structure in Python that allows you to store data as key-value pairs. Dictionaries are ideal for...
Day 05: Data Structures - Tuples | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 11821 час назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 05: We’ll explore tuples, an immutable data structure in Python. Tuples are similar to lists but cannot be modified after they’re created. Today...
Day 04: Data Structures - Lists | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 62День назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 04: We’ll dive into lists, one of Python’s most versatile data structures. Lists allow you to store and manage collections of items. Today, you’...
Day 03: Operators & Expressions | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 75День назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 03: We’ll explore operators in Python, which allow you to perform calculations, compare values, and create logical expressions. You’ll also lear...
Day 02: Variables and Data Types | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 118День назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 02: We’ll get into variables and data types in Python. You’ll learn how to work with different types of data, perform conversions, and use basic...
Day 01: Introduction to Python | 15 Days of Python with Daily Lessons, Practice, & Project
Просмотров 5 тыс.День назад
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day One: We’ll get started with Python by setting up the environment, learning basic syntax, and running a simple script. Code and resources can be ...
10 Essential Git Commands Every Developer and Data Professional Should Know!
Просмотров 47Месяц назад
In this video, I will walk you through 10 everyday commands every developer and data professional should know. Whether you are a software engineer, data scientist, data engineer etc, you will certainly find this video very useful. Download the teaching material here: github.com/david-ikenna-ezekiel/DataWith-DavidEzekiel/tree/main/yt-videos-resources/essential-git-commands
How to Design a Data Model Using Python and SQLite
Просмотров 3093 месяца назад
In this video, I walk you through the process of designing a data model using Python and SQLite. You'll learn the basics of data modelling, how to set up a database, create tables for Artists, Genres, Albums, and Tracks, and populate these tables with data from a CSV file. Teaching Material: cultured-weeder-e32.notion.site/Designing-a-Data-Model-in-Python-cb01d12cc6b5423a8d7426d07b3c276c 📁 Code...
How to Create Azure Key Vault and Connect with Databricks
Просмотров 2704 месяца назад
How to Create Azure Key Vault and Connect with Databricks
How to Provision the Medallion Architecture on Azure ADLS using Terraform
Просмотров 1075 месяцев назад
How to Provision the Medallion Architecture on Azure ADLS using Terraform
How to Migrate On-premises SQL DB to Azure Datalake Gen2 | Single & Bulk Copy Using Data Factory
Просмотров 4226 месяцев назад
How to Migrate On-premises SQL DB to Azure Datalake Gen2 | Single & Bulk Copy Using Data Factory
How to Connect to Databricks from PowerBI
Просмотров 5386 месяцев назад
How to Connect to Databricks from PowerBI
How to Fix Data Migration Error -- errorcode = jrenotfound
Просмотров 3586 месяцев назад
How to Fix Data Migration Error errorcode = jrenotfound
How I Automated and Analyzed Google Form on Looker Using Expressions and Javascript
Просмотров 1947 месяцев назад
How I Automated and Analyzed Google Form on Looker Using Expressions and Javascript
How to Write CSV as Delta Table to DBFS and Data Lake | Azure Databricks
Просмотров 4487 месяцев назад
How to Write CSV as Delta Table to DBFS and Data Lake | Azure Databricks
How to Create Azure Datalake Gen-2 Storage
Просмотров 568 месяцев назад
How to Create Azure Datalake Gen-2 Storage
SQL Commands - CREATE, INSERT, DELETE, UPDATE, & WHERE STATEMENTS
Просмотров 409 месяцев назад
SQL Commands - CREATE, INSERT, DELETE, UPDATE, & WHERE STATEMENTS
Download & Install SQL Server | SSMS
Просмотров 639 месяцев назад
Download & Install SQL Server | SSMS
What is SQL (A Beginner's Guide to SQL)
Просмотров 719 месяцев назад
What is SQL (A Beginner's Guide to SQL)
Thanks for the help.
Happy to help
Great video👏. Another great lesson presented in an excellent manner.
Thank you! 😃
I really want to learn Python coding manh!! There's so much out here that gets me confused on where/what to start
Search " Python with Bro code. Or Javascript with Bro code. Also Code with Mosh.....
You could go through my playlist and start from Day 01
Thank you so much for this. Straigh forward and helpful
Glad it was helpful!
amazing initiative, please keep going!
Thank you! Will do!
Thanks for this video
Thanks David this is a good and clear example
Glad you found it useful
Good one David
Thank you
This video open the eyes., struggled lot to overcome this issue., your video helps out. Thank you
Glad it helped!
Thanks
Thanks David, I was tired trying a lot of ways to solve it, but your video help me
Glad it helped
Great Video. Thanks👍
Thanks for watching!
thank u, it really help me
Glad it helped!
Thank you
Welcome!
Hi David thanks for this valuable info can you please upload videos related real time problem faced by data engineers it would be really helpful
Thank you for the comment. Sure, I will add that to my list
@@david-ezekiel thank you David
@@cromagaming5518 You can also check this out video that I made on data migration. You may find it useful as I handled one of the real time problems faced by data engineers: ruclips.net/video/zoyk6_8an-0/видео.html
file is no longer available, can you share the link where can i download the file or if you can share your downloaded file here... thanks
It appears Microsoft may have stopped supporting access 2010 and removed the installation file. If you are unable to download the installation file from the above link, please try the below. This should work: www.microsoft.com/en-us/download/details.aspx?id=54920
Great job you doing.
Am using a student account on azure
Am using a student account on azure
Please i had issues connecting my sql server with my data factory after installing my self hosted integration run time can i do this exactly to get connected.or is there another way out
my laptop have installed version 64bits, not problem if I install new in version 32bits?
I am having trouble with the Excel connection manager in Microsoft Visual Studio. When I try to get table information, I get this error: "Unable to retrieve table information for the connection manager 'Excel Connection Manager 4'. Failed to connect to the source using the connection manager 'Excel Connection Manager 4'." To fix this, I installed the Microsoft Access Database Engine 2016. But the problem is still there. The connection manager cannot connect to the Excel source. Can you help me fix this problem?
I tried this approach and still encountering this issue. Using Visual Studio 2022. (It is saying by default it will work on 64 bit and cannot change in properties as well). What can be done?
You hit the nail on the head with this workaround. Thanks a lot!!
Glad it helped!
Thanks David, I also had same issue and was struggling. Your videos helped me.
Happy you found it useful. Thanks
Hi David this is a good one for Beginners Bro
Glad you liked it
its not working
It appears Microsoft may have stopped supporting access 2010 and removed the installation file. You can try this, it should work: www.microsoft.com/en-us/download/details.aspx?id=54920
@@david-ezekiel it worked !! as they asked me to delete the current office suite but i went to command prompt and 1) -cd %USERPROFILE%\Downloads 2)-"AccessDatabaseEngine.exe" /quiet It worked now without removing office package.
@@ArunKumar-oi3tq how you did it didn't work for me
@@david-ezekiel it didn't work for me
It worked for me. Arun, Thank you very much!!!!!!!
what of a case scenario where integration run time doesn't connect to sql server,what should be done
There are several reasons why this may not connect, and you can diagnose the issue from the error message. Generally, ensure the integration runtime (IR) is running, verify network and firewall settings on SQL Server to allow incoming connections from the IR's IP range, and check that the authentication and configuration settings in ADF are correctly specified.
i tried downloading the file. it appears its no more available
having the same problem anny help
It appears Microsoft has stopped supporting access 2010 and removed the installation file. You can try this, it should work: www.microsoft.com/en-us/download/details.aspx?id=54920
@@david-ezekiel I tried to download and install it but its not working, can you share your 2010 downloaded file?
This video is very wonderful. Learnt a lot.
Glad it was helpful!
Nice explanation 👍
Glad you liked it!