#15 Return Keyword in Python | Python Tutorial Series | EMC Academy

preview_player
Показать описание
In this enlightening YouTube video, join us on a journey to unravel the power of functions in Python. Whether you're a programming novice or looking to enhance your skills, this comprehensive guide has got you covered!

Our expert instructor will walk you through the fundamental concepts of functions, demystifying their purpose and showcasing their incredible versatility. Starting from the basics, you'll learn how to define and call functions, explore the different types of function arguments, and understand the importance of return values.

Dive deeper as we delve into advanced topics, such as function parameters, default values, and variable scope. You'll gain a solid understanding of how functions can be used to improve code readability, promote reusability, and enhance overall program structure.

Witness real-world examples and practical demonstrations that illustrate the practical applications of functions. Discover how to create custom functions tailored to your specific needs and learn valuable techniques for organizing your code into modular and manageable pieces.

With clear explanations and a step-by-step approach, this tutorial ensures that you'll grasp the intricacies of functions effortlessly. Enhance your Python programming prowess and unleash the full potential of functions to build robust and efficient programs.

Don't miss this opportunity to become a master of Python functions. Watch the video now and take your coding skills to new heights!

Tags: Python functions, Python programming, Python tutorials, Python for beginners, Programming concepts, Code organization, Function arguments, Variable scope, Return values
Рекомендации по теме
Комментарии
Автор

Bro neenga dheivam bro🙏🏼🙏🏼🙏🏼😭😭neenga unga kozhandha kuttiyoda nalla irukkanumi watched 5 videos for return statement but u made me understand in first 5 mins

yogeshyeshwanth
Автор

a-int (input("Enter the value of a:"))
b-int (input("Enter the value of b:"))

def add():
return (a+b)

print (add())

c-int(input("Enter the value of c"))

mul-add() *c
print (mul)

jaisurya
Автор

def add():
return (a+b)*c
a=int(input("Enter Number 1:"))
b=int(input("Enter Number 2:"))
c=int(input("Enter Number 3:"))
d=add()
print("Your Result:", d)

This one is very easy

spraveen
Автор

You are really great very useful classes other thann various training centres

Shivadharannie
Автор

I am in my third year 6 th sem, before watching yours videos i didn't like python but now i understood clearly and i am focus on a data analysis field, so thanks for teaching. If i have any doubts i will text you via insta plz reply.

SenthilSenthil-bntj
Автор

bro uname and password eg la enna na potalum output false tha bro varudhu yen apdi how to resolve

mythilim
Автор

bro kindly post video daily. I'm following your videos

sumajayasree
Автор

bro n1 and n2 va epudi a and b nu identify pannuchu...

SaminathanArunmanojkumar
Автор

Wait for your next videos.. Thanks for being simple ❤️❤️❤️

filmicowls
Автор

what is the difference between print and return

sharamuthu
Автор

Q6 Answer
a=int(input("Enter A="))
b=int(input("Enter B="))
c=int(input("Enter C="))

def add(n1, n2):
return (n1+n2)

add=add(a, b)
output=add*c
print(output)

kirankumar
Автор

16:47 can we also approach this Program following below
a=int(input("Enter a"))
b=int(input("Enter b"))
c=int(input("Enter c"))
def add():
return a+b
print(add())
def mul():
return add()*c
print(mul())



I can get the correct output

kaaveeyah.s
Автор

a=int(input("Enter value a:"))
b=int(input("Enter value b:"))
c=int(input("Enter value c:"))


d=(a+b)

def add():
return(d)

g=add()
print("sum of a and b:", g)

h=g*c
print("the value of c after multiplying with sum of a and b:", h)

DharaneeshGek
Автор

Why we use return function instead of print? What is the difference between return and print?

rahmanar
Автор

simple:
def add():
a=int(input('a'))
b=int(input(' b'))
c=int(input('c'))
return (a+b)*c

add()

Prabakaran-cjhx
Автор

hi bro sql paathi konjam videos pooduinga

JK-iekk
Автор

Bro.. yesterday launch pana video laa coding try panan..but online complier la output not displayed.. it doesn't work..what can I do bro..give a solution pls???

URKECAjith
Автор

a=int(input("enter number a:")
b=int(input("enter number b:")
c=int(input("enter number c:")
def add():
return a+b
print(add()*c)

MuthuLakshmi-cjfs
Автор

def add():
a = int(input("enter a:"))
b = int(input("enter b:"))
added = a+b
print(f"sum of {a} and {b} is {added}")
c = int(input("enter c:"))
mul = added*c
print("multiply:", mul)
add()

azarudeena
Автор

a=int(input())
b=int(input())
c=int(input())
def add():
return a+b
e=add()
output=e*c
print(output)

Ady_NXT