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
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
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)
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)
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
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()
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???
#if user name and password is correct, the fuction will return true, else it will return false. s_user="emc" #static value s_passwd="1234" #static value u_user=input("Enter the user name : ") u_passwd=input("Enter the password : ") def validate(a,b,c,d): if(c==a and d==b): return True else: return False ans=validate(s_user,s_passwd,u_user,u_passwd) print(ans)
bro telegram link podunga
t.me/+C6_1tXtmYQs5MTVl Join this Telegram link to solve your doubts.
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
😂😂😂😂😂
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
Thank you bro
def add():
a=int(input())
b=int(input())
c=int(input())
return (a+b)*c
a=add()
print(a)
a=int(input("a:"))
b=int(input("b:"))
c=int(input("c:"))
def add():
return(a+b)
sum=add()
Print(sum*c)
👏
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)
You are really great very useful classes other thann various training centres
Thanks for your words!
Thank you sir clear explanation
You are welcome
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)
simple:
def add():
a=int(input('a'))
b=int(input(' b'))
c=int(input('c'))
return (a+b)*c
add()
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)
what is the difference between print and return
"Print" shows the output whereas "return" returns a value or values whenever the function is called.
Print function output direct ah display pannum
Return function antha value vah return pannum atha oru variable ah store panni output print pannanum
bro uname and password eg la enna na potalum output false tha bro varudhu yen apdi how to resolve
a=int(input())
b=int(input())
c=int(input())
def add():
return a+b
e=add()
output=e*c
print(output)
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
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()
But read the question
Shoud be use "return"😅
bro kindly post video daily. I'm following your videos
Wait for your next videos.. Thanks for being simple ❤️❤️❤️
U r best teacher and thankyou bro
Thanks and welcome
thanks a lot sir
So nice of you
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)
Nice explanation bro❤
Thank you 🙂
Well explained anna
hi bro sql paathi konjam videos pooduinga
Yes bro I'm also need
S bro
a="EMC"
b="123"
k=(a,b)
c=str(input("UNAME:"))
e=str(input("PASSWORD:"))
f=(c,e)
def validate(m1,m2):
if (f==k):
return true
else:
return false
validate(a,b)
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???
Thanks a lot… A good one😊
Lovely bro you are ❤
Thank you so much 😀
Happy learning!! 😊
bro n1 and n2 va epudi a and b nu identify pannuchu...
#if user name and password is correct, the fuction will return true, else it will return false.
s_user="emc" #static value
s_passwd="1234" #static value
u_user=input("Enter the user name : ")
u_passwd=input("Enter the password : ")
def validate(a,b,c,d):
if(c==a and d==b):
return True
else:
return False
ans=validate(s_user,s_passwd,u_user,u_passwd)
print(ans)
Bro onlinela bca course pannamudiyuma
a=int(input())
b=int(input())
c=int(input())
def add(y):
return a+b
k=(a+b)*c
add(k)
print(k)
Thank u so much
bro antha word document send pannu bro, please
Kindly post videos daily
bro python framework "Django" series pannunge
Tnx brow
Error varuthu bro 😮
which sum bro?
Anna python projects seinga anna plsssss
Vroo video upload pannunga kindly request plz
5th one is wrong
enna wrong bro?
Try this
a=int(input())
b=int(input())
c=int(input())
def add():
return a+b
e=add()
output=e*c
print(output)
a=int(input("Enter value for a"))
b=int(input("Enter value for b"))
c=int(input("Enter value for c"))
def add():
return (a+b)*c
add()