Python Data Science Lecture 10 || Mastering User Defined Functions

preview_player
Показать описание
Welcome to Lecture 10 of our Python Data Science series! In this session, we focus on User Defined Functions (UDFs) and their crucial role in data science and programming.

🧠 Understanding UDFs: Learn what user defined functions are and why they are essential for creating reusable and organized code.

📘 Creating UDFs: Step-by-step instructions on how to write your own functions in Python. We’ll cover function definitions, parameters, return values, and more.

🔍 Real-World Applications: Discover how to use UDFs to solve real-world data science problems, making your code more efficient and easier to maintain.

💡 Best Practices: Gain insights into best practices for writing clean, efficient, and well-documented functions.

🔗 Resources and Code: Access additional resources and the source code used in this lecture to enhance your learning experience.

Whether you're a beginner or looking to refine your skills, this lecture will help you master user defined functions in Python. Don’t forget to like, comment, and subscribe for more lectures and tutorials in our Python Data Science series!

➖➖➖➖➖➖
📱 For Any Further Queries or Doubts? Contact- 7880-113-112 (Student Helpline Number)
➖➖➖➖➖➖
➖➖➖➖➖➖
➖➖➖➖➖➖
🔗 Download App
#Python #DataScience #UserDefinedFunctions #LearnPython #DataScienceLecture #PythonFunctions #Programming #TechEducation #DataScienceTutorial #PythonForDataScience
Рекомендации по теме
Комментарии
Автор

thank you for your hard work for this course

Philomath
Автор

mam plz python video jaldi laya kare bahut aache se explain karte hai

spiritual_story.
Автор

Ap ka video dekh ke me bohut kuch sikha mame, thank you so much

MHshop
Автор

You are teaching in very good way, mam we are waiting next video👍Always support

MR.EXPLORER
Автор

Q1)
b) def my_function():
Q2)
d)to create a new function

HimanshuMeshram-cnkr
Автор

i want to learn python full course from scrach this is the one of the best couse to understand for beginner

avinashgupta
Автор

def my_function():
print("my name is prashant"), my_function(), then showing error what is the problem, NameError Traceback (most recent call last)
Cell In[3], line 1
----> 1 my_function()

NameError: name 'my_function' is not defined

prashantjumde
Автор

Madam
Industrial helping hands and this channel is same?
How frequently your uploading each lecture? Is it weekly once.
Very nice explanation, I am following from many months, thanks keep going

keerthin
Автор

Mam ek doubt thee ki agar number of student to aagye 8 par muje ye bhi chaahiye uske hi saath ki konse wo marks jo pass hue hai then kaise karenge .



def

# find the average score
# find the highest score
# find the lowest score
# the number of student that passed (more than 80 is passed)
# the number of student that failed



lowest_score=min(exam_score)


num_passed=0
for score in exam_score:
if score >= 80:
num_passed=num_passed+1





return average_score, highest_score, lowest_score, num_passed, num_failed

exam_score=[85, 92, 78, 90, 88, 95, 82, 79, 87, 91]



average_score, highest_score, lowest_score, num_passed, num_failed=calculate_exam_score(exam_score)



print("Average score: ", average_score)
print("The maximum score in class :", highest_score)

print("The minimum score in class :", lowest_score)

print("The number of passed stident :", num_passed)
print("The number of Failed stident :", num_failed)

KaizuKalyug
Автор

Mam kya aap kuch share kar sakte like website or kuch bhi jaha se ham question practice kar sakain topic wise.

KaizuKalyug
Автор

When you will teach statistics and probability?

GauravUpadhyay-er
Автор

Mam can we get end to end project with code explanation. Jo hamare resume aur job ke liye helpful ho ....python project, ML project, data science project

arjunrana
Автор

Maam after login dashboard aa raha hai aur uske niche 0 free course or 0 premium course aa raha hai aur jab dropdown se free course select kar raha hu toh page not found aa raha hai please help if there any other option thank you.

VijayYadav-otwf
Автор

Please use dark theme /background of jupiter as black becuse it is irritatimg eyes. As we are watching it on screen for continious lomg time and it is very small to see

.

Pratikboke
Автор

Kiya mam Data any list ka course kariti hi kiya mam

AmitSharma-lrzx
Автор

1-b
2-b
If my ans is correct then replay me

tanmoychatterjee