i'm 54 years old with no programming experience. I am constantly searching for good tutorials. This is by far the best python tutorial I have seen so far. Thanks. Keep up the good work.
The best python teacher on the internet, NO DEBATE!! I said it!!! Thank you so much Navin sir for taking your time and contributing to the python community with such a mindblowing course.... Hatts off to you
@@onepersonintheuniverse If you focus on the content what he had taught us and the effort he had given, you will not think in this way.🙂Plese be thankful all the time.
Nuvvu keka anna... Feeling proud of you... Just yesterday I started ur tutorials.... "Teluskuntune" unna eppati varaku... Not at all boring... I am more addicted to ur videos than any webseries(money heist, game of thrones)
At this point i realised i've never binged watch a tutorial for so long but it is this channel at which i've almost completed watching 3/4 of the python tutoring in 2 days! . You are a great teacher i must say. Your efforts are commendable. Thankyou so much . 😇😇☺️
Thanks ! The new technique which I described here : t,u,v = int(input("Number 1 : ")) , int(input("Number 2 : ")) , int(input("Number 3 : ")) print("The maximum value is : " , max(t,u,v))
Now I know why you teach waaaay better than the others. Everytime you finish a video, you challenge us. Now you are really one of the coolest person in the world.
I have done your given assignments with best of my understanding. So they're: 1) number= 0.0000005 if number>0: print("Positive") elif numbery and x>z: print(x) elif y>z and y>x: print(y) elif z>y and z>x: print(z) else: print('none') Thank you for your classes.
2nd Code is wrong brother!!! I mean think about it, what if the value of x and z are equal? That execution of yours will directly skip to the else block and prints nothing even if x and z both have a greater number.
2nd Code is wrong brother!!! I mean think about it, what if the value of x and z are equal? That execution of yours will directly skip to the else block and prints "none" even if x and z both have a greater number.
2nd Answer: n1 = int(input("Enter 1st number: ")) n2 = int(input("Enter 2nd number: ")) n3 = int(input("Enter 3rd number: ")) if n1 > n2 and n2 > n3: print (n1 ,"is the highest number among the three") elif n1 < n2 and n2 < n3: print (n3 , "is the highest number among the three")
elif n1 < n2 and n2 > n3: print (n2 , "is the highest number among the three")
1. x=int (input("enter a number ")) if x>0: print("the number is positive") else: print("the number is negative") 2. x,y,z = int(input("1st num ")),int(input("2nd num ")),int(input("3rd num ")) if x>y and x>z : print(x) elif y>z: print(y) else : print(z)
@@mohammad1906 I have to use string because I can't add two different data types like string and the number(int). Basically, "maximum" gets a value first, then that value is simply printed as a string for this line. After that, maximum type is again int.
another interesting way to do it without if, elif, else a, b, c= int(input('enter first number')), int(input('enter second number')), int(input('enter third number')) nums= [a, b, c] print(max(nums))
Sir your lectures are so interactieve and explanations are awesome, I have a suggestion please give us atleast 5 questions(for easy) and 3 questions(for medium) and 2 questions(for hard) because as you know ”practice makes man perfect 😊”
a= float(input("enter the value")) if a>0: print("+ve") elif ac and b>d: print("b is greatest") elif c>b and c>d: print("c is greatest") else: print("d is greatest")
The best thing about your video is that you make programming sound to easy and you communicate so well. Not everyone can teach well as you are able to.
Mr. Navin you are teaching with great energy. You are trying best to make us understand. I have never had such learning experience before. Thank you so much for your efforts to make these things simple!
Q1: First question num = int(input("Enter Number: ")) if num > 0: print("positive") elif num < 0: print("Negative") else: print("Zero") Q2: Second question print("You are to insert 3 numbers:") a = int(input("Enter First Number: ")) b = int(input("Enter Second Number: ")) c = int(input("Enter Third Number: ")) x = [a,b,c] print(max(x))
second question If elif print("You are to insert 3 numbers:") x = int(input("enter first number:")) y = int(input("enter second number:")) z = int(input("enter third number:")) if x>=y and x>=z: print(x) elif y>=x and y>=z: print(y) elif z>=x and z>=y: print(z)
@@n8panther5 i can't understand what is wrong with this or rather can't understand why this does'nt work: a = int(input('enter number a ')) b = int(input('enter number b ')) c = int(input('enter number c ')) if a > (b and c): print(a) elif b > (a and c): print(b) elif c > (b and a): print(c)
x = input("enter the 1st number ") y = input("enter the 2nd number ") z = input("enter the 3rd number ") if x>y and x>z: print( x +" is the greatest number") elif y>x and y>z: print( y +" is the greatest number") else: print( z +" is the greatest number")
I have gone through tons of tutorials in my career... and I find this the best I have come across for "BEGINNERS"! love the way you portray Python in the big picture and then zoom in on details for learning !
You made it so easy! I could do the quiz questions in just 10 mins! 1. print("Let's check if a number is +ve or -ve.") print() x = int(input("Enter a number: ")) if x > 0: print("You entered a positive number") else: print("You entered a negative number") print("See you later!") 2. print("Let's check the highest of 3 numbers you give.") print() first_num = int(input("Enter the first number: ")) second_num = int(input("Enter the second number: ")) third_num = int(input("Enter the third number: ")) maximum = max(first_num, second_num, third_num) print("Highest number is " + str(maximum))
Things always get crystal clear when I follow your course videos and practice the concepts. Today's video has completely cleared the differences in usability of different condition checking methods👍. Thank you so very much love the way you teach❤🔥 quiz 1--> x = int(input("Enter the number: ")) if x > 0: print("+ve number") else: print("-ve number") quiz 2--> p = int(input("Enter the number: ")) q = int(input("Enter the number: ")) r = int(input("Enter the number: ")) if p > q and p > r: print("p is the greatest") elif q > p and q > r: print("q is the greatest") elif r > p and r > q: print("r is the greatest")
This is one of the best tutorial for python i have seen so far. I am not exaggerating but the fact is a normal human being can concentrate for 15 mins in shot and i am seeing all the topics are covered within 15 mins max. It is superbly accommodated all the required strength to cover the topics. So I made 5 of my friends to watch this channel videos not necessarily python but for others too... A big thanks to Navin Reddy garu and his team who is invisible to us on the screen of course for their effort in making such valuable information online.
this is wrong this is the correct one print ('give three numbers and i will give you the highest of them') d, e, f= int(input('enter first number')), int(input('enter second number')), int(input('enter third number')) if d> e and d> f: print(str(d) + ' is the greatest' ) elif e> f and e> d: print( str(e) +' is the greatest') elif f> e and f> d: print(str(f) + ' is the greatest')
I guess this was the correct solution according to the lesson for question 2: x=int(input('Enter the first number: ')) y=int(input('Enter the second number: ')) z=int(input('Enter the third number: ')) if x>y and x>z: print('X is the largest with value: ', x) elif y>x and y>z: print('Y is the largest with value: ', y) elif z>x and z>y: print('Z is the largest no with value: ', z) else: print('there are two or more equal nos.')
The only thing i wonder is how can such videos have dislikes? the button itself should be disabled.. awesome learning exp with you! lots of love and best wishes
Hi SR Panda: try a = int(input("Enter First Number: ")) b = int(input("Enter Second Number: ")) c = int(input("Enter Third Number: ")) x = [a,b,c] print(max(x))
1) x=int(input ('Enter a number')) If x>0: Print("Number is positive ") Else : Print("Number is negative ") ---------------------------------------------------- 2) x =int(input ("Enter 1st values")) y =int(input ("Enter 2nd values")) z =int(input ("Enter 3rd values")) If x>y & x>z: print("Greater value is x") elseif y>x & y>z: Print("Greater number is y") elseif z>x & z>y : Print("Greater number is z")
Actually ,I started learning python from here only and I'm feeling very lucky I got this wonderful series on python and learning python from such a great tutor the explanation is really great .. thank you sir
Solution for Q1: ---------------- x = int(input("Enter the value for x: ")) if x > 0: print("This is Positive Number") else: print("This is Negative Number") Solution for Q2: ----------------- a = int(input("Enter the a value: ")) b = int(input("Enter the b value: ")) c = int(input("Enter the c value: ")) if a>b and a>c: print("a is greater") elif b>c and b>a: print("b is greater") else: print("c is greater") Awesome Navin Garu...your just sharing your valuable knowledge to soceity ...Great Service......Thank you so much
@@appurvaagarwal5567 x =float(input('enter the 1st value:')) y =float(input('enter the 2nd value:')) z =float(input('enter the 3rd value:')) if x>y and x>z: print (""+str(x)+"" ' is the greatest value') elif y>x and y>z: print(""+str(y)+"" ' is the greatest value') elif z>x and z>y: print(""+str(z)+ "" ' is the greatest value')
1st q: x = 34 if(x>0): print("positive") else: print("negative") second q: a = int(input("enter n1 input")) b = int(input("enter n2 input")) c = int(input("enter n3 input")) if a>b and b>c: print("a is the largest number") elif ac: print("b is the largest number") elif a
Programme to find out the greatest among three numbers num1=int(input("enter the first number:")) num2=int(input("enter the seond number:")) num3=int(input("enter the third number:")) x=max(num1,num2,num3) print(x, "is the largest number") Thanks for the video!
Greater in three numbers: x = int(input("Enter 1st number: ")) y = int(input("Enter 2nd number: ")) z = int(input("Enter 3rd number: ")) result = (x, y, z) print(max(result))
I started learning python with udemy last month, got so confused that I had to use other methods, you have a great style of teaching and it has helped improved my knowledge of python❤
Code for 2nd question: a=int(input ('enter first number')) b=int(input ('enter second number')) c=int(input ('enter third number')) num=max(a,b,c) print(num)
Assignment #2: import math x = int(input("Please enter a number: ")) y = int(input("Please enter a number: ")) z = int(input("Please enter a number: ")) a = max(x,y,z) print(str(a) + " this is the largest number")
151 thumbs down are the people who doesn't know to appreciate someone's effort to educate people.. Doing selfless services.. For us this teacher is great.. naveen Sir.. U Rock 😎
value1 = float(input("Please enter three numbers")) value2 = float(input("Please enter three numbers")) value3 = float(input("Please enter three numbers")) arr = [value1,value2,value3] arr.sort() print("The higest value is ", arr[2])
x=input("Enter 1st value") y=input("Enter 2nd value") z=input("Enter 3rd value") if zy: print("1st value is Greatest") elif xz: print("2nd value is Greatest") elif yx: print("3rd value is Greatest")
Sir,Thank you very much because of you I am feeling so confident and enthusiastic in the coding domain inspite of being a mechanical engineering student. Love from West bengal
This is the most basic one which i hope everyone can understand, i found it easy to type. # Find the greatest value. x, y, z=(input('enter x: '), input("enter y: "), input("enter z: ")) float(x), float(y), float(z) if x > y and x > z: print("The greatest value is", x) elif y > x and y > z: print('The greatest value is ', y) else: print('The greatest value is ', z)
number1 = int(input("Enter the First Number")) number2 =int(input("Enter Thee second Number")) number3 =int(input("Enter the Third Number")) if (number1>number2) and (number1>number3): print("Number1 is the grater number") elif number2>number1 and number2>number3: print("NUmber2 is the greatest Number")
else: print("wow,Number3 is the grater then other")
now a days am addicted to python. thats coz of you sir.thank you so much sir.. n=int(input("enter an integer")) if ny)and(y>z): print("'x'is biggest") elif (y>x)and(y>z): print("'y is biggest") else: print("'z' is biggest")
You can also write it like this as a beginner:: a=int(input('Enter the 1st no.: ')) b=int(input('Enter the 2nd no.: ')) c=int(input('Enter the 3rd no.: ')) if(a>b and a>c): print('the greatet no is',a)) elif(a>c): print('{} is largest'.format(b)) else: print('{} Is largest'.format(c))
For quiz question 2.) num1=int(input('enter a number :')) num2=int(input('enter a number :')) num3=int(input('enter a number :')) If num1>num2>num3: print(num1) If num1
Here are the codes: Positive/Negative: x = int(input("Enter any integer value: ")) if (x >= 0): print(" Positive") else: print("Negative") Maximum number: x = int(input("Enter the value of x: ")) y = int(input("Enter the value of y: ")) z = int(input("Enter the value of z: ")) if max(x,y,z) == x : print(x) elif max(x,y,z) == y : print(y) elif max(x,y,z) == z : print(z)
You r great teacher not only for giving such a great knowledge only also because u makes coding so intresting. I love the way of your teaching❤. Thanku so much..
1. x=2.995 if x >=0: print("Positive Value") else: print("Negative Value") 2. print("Welcome to the greatest value calculator, enter three values to begin") x= int(input('Enter First Number')) y= int(input('Enter Second Number')) z= int(input('Enter Last Number')) if x>y and x>z: print(x) elif y>x and y>z: print(y) elif z>y and z>x: print(z) else: print("Values are Equal or Wrong Input")
@@harshavardhandsh5190 else:- print( "Min number is" + str(z) ) as because z is an integer so we need to convert it to string either by writing str(your integer) or print("Your statement" , your integer)
x, y, z = input("Enter a three value: ").split() if x>y and x>z : print ('x is largest') elif y>z and y>x : print('y is largest') else : print('z is largest')
i'm 54 years old with no programming experience. I am constantly searching for good tutorials. This is by far the best python tutorial I have seen so far. Thanks. Keep up the good work.
Same
The best python teacher on the internet, NO DEBATE!!
I said it!!! Thank you so much Navin sir for taking your time and contributing to the python community with such a mindblowing course.... Hatts off to you
I agree. Best I have seen
In indo "no debat no kecot" it means "absolutely no debate"
I was dying from the inside while listening to him. Ugh…
@@sundari7846 😀
@@onepersonintheuniverse If you focus on the content what he had taught us and the effort he had given, you will not think in this way.🙂Plese be thankful all the time.
Nuvvu keka anna... Feeling proud of you... Just yesterday I started ur tutorials.... "Teluskuntune" unna eppati varaku... Not at all boring... I am more addicted to ur videos than any webseries(money heist, game of thrones)
game of thrones ❤️😌
bro ee tutorial mimmalni strong chesindha python basics and coding lo
And also you can use float because we can use more values
(1).
a=int(input('enter any integer:'))
if a>0:
print('this is positive integer')
elif a
Bro u can use 0 rather than nor positive nor negative
this code will give an error:
line 7 error 'this is neither positive nor negative' not defined
x = int(input("enter a number")
if x
At this point i realised i've never binged watch a tutorial for so long but it is this channel at which i've almost completed watching 3/4 of the python tutoring in 2 days! . You are a great teacher i must say. Your efforts are commendable. Thankyou so much . 😇😇☺️
I have purchased many python courses from different sites but i m learning from him haha... great guy :)
Thanks !
The new technique which I described here :
t,u,v = int(input("Number 1 : ")) , int(input("Number 2 : ")) , int(input("Number 3 : "))
print("The maximum value is : " , max(t,u,v))
Super bro thanks
where is the question?
@PUSHKAR SINGH it will convert it into integer
@@knowledgeweekly9412 he made short instead of several lines
@PUSHKAR SINGH he has put int in the code
Bacame a Python lover in 2 hours. You have amazing teaching skills and it must be appreciated. Thankyou so much.
Really awesome class sir. I'm addicted to your teaching
Me too
@@sundari7846 I'm also
*Yeah... it's 💯 correct*
Me also
Me too
Now I know why you teach waaaay better than the others. Everytime you finish a video, you challenge us. Now you are really one of the coolest person in the world.
I am in love with programming just because of you sir.
Thank you for your strong support
I have done your given assignments with best of my understanding. So they're:
1)
number= 0.0000005
if number>0:
print("Positive")
elif numbery and x>z:
print(x)
elif y>z and y>x:
print(y)
elif z>y and z>x:
print(z)
else:
print('none')
Thank you for your classes.
2nd Code is wrong brother!!!
I mean think about it, what if the value of x and z are equal?
That execution of yours will directly skip to the else block and prints nothing even if x and z both have a greater number.
2nd Code is wrong brother!!!
I mean think about it, what if the value of x and z are equal?
That execution of yours will directly skip to the else block and prints "none" even if x and z both have a greater number.
x = int(input())
y = int(input())
z = int(input())
if x>=y and x>=z:
print(x)
elif y>=x and y>=z:
print(y)
else:
print(z)
2nd Answer:
n1 = int(input("Enter 1st number: "))
n2 = int(input("Enter 2nd number: "))
n3 = int(input("Enter 3rd number: "))
if n1 > n2 and n2 > n3:
print (n1 ,"is the highest number among the three")
elif n1 < n2 and n2 < n3:
print (n3 , "is the highest number among the three")
elif n1 < n2 and n2 > n3:
print (n2 , "is the highest number among the three")
else:
print("Enter 3 different numbers")
x = int(input("enter the number:"))
y = int(input("enter the number:"))
z = int(input("enter the number:"))
a = max(x,y,z)
print(a)
1.
x=int (input("enter a number "))
if x>0:
print("the number is positive")
else:
print("the number is negative")
2.
x,y,z = int(input("1st num ")),int(input("2nd num ")),int(input("3rd num "))
if x>y and x>z :
print(x)
elif y>z:
print(y)
else :
print(z)
Hello! In 2. you can simply use the max function! Like:
maximum = max(x,y,z)
print("Highest number is " + str(maximum))
I found something even better. directly use str(max(x,y,z))
@@YashhC did it work, how can you use string function here
@@mohammad1906 I have to use string because I can't add two different data types like string and the number(int).
Basically, "maximum" gets a value first, then that value is simply printed as a string for this line. After that, maximum type is again int.
WhAts happens when the to values are Same but not third one ..
x,y,z = int(input("1st num")),int(input("2nd num")),int(input("3rd num"))
if x>y and x>z :
print(x)
elif y>z:
print(y)
else :
print(z)
another interesting way to do it without if, elif, else
a, b, c= int(input('enter first number')), int(input('enter second number')), int(input('enter third number'))
nums= [a, b, c]
print(max(nums))
bro its work
one line ver of this is
print(max(map(int, (input('1st number: '), input('2nd number: '), input('3rd number: ')))))
@@mainios126bobeats4 I think u should write int as well
You can put is greatest number with x, y, z.
since 4 days i was confused between nested if and elif, now fully understood the difference between them .
Thank you so much sir!!🙏
Sir your lectures are so interactieve and explanations are awesome, I have a suggestion please give us atleast 5 questions(for easy) and 3 questions(for medium) and 2 questions(for hard) because as you know ”practice makes man perfect 😊”
S .... sir
Right bro
Correct
its like a sandbox game, have fun making mistakes
Yes sir
a= float(input("enter the value"))
if a>0:
print("+ve")
elif ac and b>d:
print("b is greatest")
elif c>b and c>d:
print("c is greatest")
else:
print("d is greatest")
Thanks alot
@@rituwadhwa22 ok..😊
Your teachings are “Easy to understand” & you make it so much more fun and interesting. Thank you!
The best thing about your video is that you make programming sound to easy and you communicate so well. Not everyone can teach well as you are able to.
Mr. Navin you are teaching with great energy. You are trying best to make us understand. I have never had such learning experience before. Thank you so much for your efforts to make these things simple!
x=int(input("enter any plus or minus number"))
if x
Q1: First question
num = int(input("Enter Number: "))
if num > 0:
print("positive")
elif num < 0:
print("Negative")
else:
print("Zero")
Q2: Second question
print("You are to insert 3 numbers:")
a = int(input("Enter First Number: "))
b = int(input("Enter Second Number: "))
c = int(input("Enter Third Number: "))
x = [a,b,c]
print(max(x))
Your 1 st code is correct bt in second code u should apply if else logic
@@shreyachavan7460 pls can u say how? 🙏🙏
@@shreyachavan7460 first one IndentationError: unexpected indent
second question If elif
print("You are to insert 3 numbers:")
x = int(input("enter first number:"))
y = int(input("enter second number:"))
z = int(input("enter third number:"))
if x>=y and x>=z:
print(x)
elif y>=x and y>=z:
print(y)
elif z>=x and z>=y:
print(z)
@@n8panther5 i can't understand what is wrong with this or rather can't understand why this does'nt work:
a = int(input('enter number a '))
b = int(input('enter number b '))
c = int(input('enter number c '))
if a > (b and c):
print(a)
elif b > (a and c):
print(b)
elif c > (b and a):
print(c)
x = input("enter the 1st number ")
y = input("enter the 2nd number ")
z = input("enter the 3rd number ")
if x>y and x>z:
print( x +" is the greatest number")
elif y>x and y>z:
print( y +" is the greatest number")
else:
print( z +" is the greatest number")
1st question answer:
num = int(input("Enter a number: "))
if num > 0:
print("positive.")
else:
print("Negative.")
print("enter 3 no")
a=int(input())
b=int(input())
c=int(input())
if a>b:
if a>c:
lar=a
else:
lar=c
else:
if b>c:
lar=b
else:
lar=c
print("The largest is",lar)
question 2 ans
a=int(input())
b=int(input())
c=int(input())
if(a>b and a>c):
print(a,"max")
print("max")
elif(ac):
print(b,"max")
print("max")
else:
print(c,"max")
print("max")
I have gone through tons of tutorials in my career... and I find this the best I have come across for "BEGINNERS"! love the way you portray Python in the big picture and then zoom in on details for learning !
Learning in 2023 it's just awesome u are making me to interest to learn
You made it so easy! I could do the quiz questions in just 10 mins!
1. print("Let's check if a number is +ve or -ve.")
print()
x = int(input("Enter a number: "))
if x > 0:
print("You entered a positive number")
else:
print("You entered a negative number")
print("See you later!")
2. print("Let's check the highest of 3 numbers you give.")
print()
first_num = int(input("Enter the first number: "))
second_num = int(input("Enter the second number: "))
third_num = int(input("Enter the third number: "))
maximum = max(first_num, second_num, third_num)
print("Highest number is " + str(maximum))
a=int(input("enter any number"))
if a>0 :
print(a," is +tive")
elif a==0 :
print("neither positive nor negative")
elif a
Ur way of teaching is so awesome.... and as a fresher , I learned more and become craze on python😁
Things always get crystal clear when I follow your course videos and practice the concepts.
Today's video has completely cleared the differences in usability of different condition checking methods👍. Thank you so very much love the way you teach❤🔥
quiz 1-->
x = int(input("Enter the number: "))
if x > 0:
print("+ve number")
else:
print("-ve number")
quiz 2-->
p = int(input("Enter the number: "))
q = int(input("Enter the number: "))
r = int(input("Enter the number: "))
if p > q and p > r:
print("p is the greatest")
elif q > p and q > r:
print("q is the greatest")
elif r > p and r > q:
print("r is the greatest")
I am SO ADDICTED TO PYTHON! Thank you Navine. Pls also if you have time make a tutorial on Python Shell and turtle.
lmao dude same..before the day of my exam im doing stuff outside the portions
This is one of the best tutorial for python i have seen so far. I am not exaggerating but the fact is a normal human being can concentrate for 15 mins in shot and i am seeing all the topics are covered within 15 mins max. It is superbly accommodated all the required strength to cover the topics.
So I made 5 of my friends to watch this channel videos not necessarily python but for others too... A big thanks to Navin Reddy garu and his team who is invisible to us on the screen of course for their effort in making such valuable information online.
Your Videos are really helpful!! I let all the ads run completely so that I can contribute something to you.
a = 4
b = 6
c = 7
if a > b and a > c:
print(a)
elif b > c and b > a:
print(b)
else:
print(c)
this is wrong
this is the correct one
print ('give three numbers and i will give you the highest of them')
d, e, f= int(input('enter first number')), int(input('enter second number')), int(input('enter third number'))
if d> e and d> f:
print(str(d) + ' is the greatest' )
elif e> f and e> d:
print( str(e) +' is the greatest')
elif f> e and f> d:
print(str(f) + ' is the greatest')
Really osm explanation
I am often confused with if,elif,else
Now all my doubts is clear
Thank you so much sir...
x = -5
if x > 0:
print("positive")
else:
print("negative")
print("Welldone")
x=int(input("enter the value: ")
😂@@mdrashidnazir7520
I guess this was the correct solution according to the lesson for question 2:
x=int(input('Enter the first number: '))
y=int(input('Enter the second number: '))
z=int(input('Enter the third number: '))
if x>y and x>z:
print('X is the largest with value: ', x)
elif y>x and y>z:
print('Y is the largest with value: ', y)
elif z>x and z>y:
print('Z is the largest no with value: ', z)
else:
print('there are two or more equal nos.')
No need to use y > x in 1st elif & no need to use 2nd elif, use else directly.
@PUSHKAR SINGH that doesn't change anything it will still give you the greatest value
This was nice, but it doesn’t work for float numbers
@@Realthonie then do float(input("Enter a number: ")) very simple solution
The only thing i wonder is how can such videos have dislikes? the button itself should be disabled.. awesome learning exp with you! lots of love and best wishes
x= int(input("enter 1st no."))
y= int(input("enter 2nd no."))
z= int(input("enter 3rd no."))
if (x>y and x>z):
print ("x is greater")
elif (y>x and y>z):
print ("y is greater")
else:
print("z is greater")
Hi SR Panda: try
a = int(input("Enter First Number: "))
b = int(input("Enter Second Number: "))
c = int(input("Enter Third Number: "))
x = [a,b,c]
print(max(x))
@@jabuto-farmnigeria8626 done that also. Thanks
If i want to print that which among x,y,z is greatest than how to that along with max function
import sys
x = sys.argv[1]
y = sys.argv[2]
z = sys.argv[3]
if(x>y):
if(x>z):
print("x")
elif(z>y):
print("z")
else:
if(y>z):
print("y")
else:
print("z")
nice boyy.....
x=-7
if x>0:
print("positive number:")
elif x==0:
print("its zero")
else:
print("negative number")
print("its done")
Bro I can't go to the next line when I debug the first line ,in options also it will not showing
1.
x=int(input("Enter the value:"))
if xy) and (x>z):
print("X is Biggest")
elif(y>z):
print("Y is Biggest")
else:
print("Z is Biggest")
Thank you so much
The best tutor found on the internet for programming skills....
I cant even explain what you have done.... Awesome🔥
For quiz question 1)
Num= int(input('enter a number:'))
if Num>0:
print("positive")
if Num
OMG you are great at explaining things and your energy is perfect and exciting for teaching
Where are you from
latina@@prynka1803
1)
x=int(input ('Enter a number'))
If x>0:
Print("Number is positive ")
Else :
Print("Number is negative ")
----------------------------------------------------
2)
x =int(input ("Enter 1st values"))
y =int(input ("Enter 2nd values"))
z =int(input ("Enter 3rd values"))
If x>y & x>z:
print("Greater value is x")
elseif y>x & y>z:
Print("Greater number is y")
elseif z>x & z>y :
Print("Greater number is z")
great man
Who is watching in 2024👇
Actually ,I started learning python from here only and I'm feeling very lucky I got this wonderful series on python and learning python from such a great tutor the explanation is really great .. thank you sir
n=int(input("enter a no:"))
if n>=0:
print("n is a positive no")
else:
print("n is a negative no")
What is the use of elif and why we use
1)
a= int (input ("enter number"))
if a ==0:
print ("zero")
elif a>0:
print (" postive number")
elif a
Sir u r great 🙏
I'm in class 12 since I don't have any good teachers .......
U r good 😊
THANK YOU TELUSKO
To get all 3 input in one line:
x,y,z = int(input('Enter first number: ')), int(input('Enter second number: ')), int(input('Enter third number: '))
x,y,z=int(input("1st Number")),int(input("2nd Number")),int(input("3rd Number"))
if(x>y&x>z):
print(x)
elif(y>z):
print(y)
else:
print(z)
@@sajalgpt8 what is the use of elif and why we use elif
1.
a= values
if a>0:
print('positive')
else:
print("negative').
2.
a,b,c=5,8,11
if a>b and a>c:
print('a is highest')
if a
C is highest
Sir jst few months got a software job in infosys, now learning python 😍
Your teachings are “Easy to understand” & you make it so much more fun and interesting. Thank you so much
You are the one who helps in programming a lot.Thanks a lot sir😀☺☺☺☺😮
Solution for Q1:
----------------
x = int(input("Enter the value for x: "))
if x > 0:
print("This is Positive Number")
else:
print("This is Negative Number")
Solution for Q2:
-----------------
a = int(input("Enter the a value: "))
b = int(input("Enter the b value: "))
c = int(input("Enter the c value: "))
if a>b and a>c:
print("a is greater")
elif b>c and b>a:
print("b is greater")
else:
print("c is greater")
Awesome Navin Garu...your just sharing your valuable knowledge to soceity ...Great Service......Thank you so much
. Solution to question in the end
l=int(input ("v1"))
m=int(input ("v2"))
n=int( input ("v3"))
set=[l,m,n]
print( max(set))
While this is correct, I think the purpose of the assignment was to use if and elif operators as well.
@@appurvaagarwal5567 x =float(input('enter the 1st value:'))
y =float(input('enter the 2nd value:'))
z =float(input('enter the 3rd value:'))
if x>y and x>z:
print (""+str(x)+"" ' is the greatest value')
elif y>x and y>z:
print(""+str(y)+"" ' is the greatest value')
elif z>x and z>y:
print(""+str(z)+ "" ' is the greatest value')
@@appurvaagarwal5567 yeah true
1st q:
x = 34
if(x>0):
print("positive")
else:
print("negative")
second q:
a = int(input("enter n1 input"))
b = int(input("enter n2 input"))
c = int(input("enter n3 input"))
if a>b and b>c:
print("a is the largest number")
elif ac:
print("b is the largest number")
elif a
x = -10
if x
It prints NEGATIVE
@@manchikatlavamshi1220 Use this code
a = int(input('enter a number')
If a >= 0:
Print ('positive')
Else :
Print ('negative')
what if user enters 0?? must havr condition for zero
Programme to find out the greatest among three numbers
num1=int(input("enter the first number:"))
num2=int(input("enter the seond number:"))
num3=int(input("enter the third number:"))
x=max(num1,num2,num3)
print(x, "is the largest number")
Thanks for the video!
x = int(input("1st number: "))
y = int(input("2nd number: "))
z = int(input("3rd number: "))
a = [x,y,z]
print("The greatest number is",max(a))
easy way to do this:-
a.sort()
print(a[2])
y dont we write as x=int(input('enter 3 nums'))[2]
@@bodalasagarika3539 only index of 2 value assigns to x
Best tutor ever in my software learning. Thank you Navin Reddy.
Greater in three numbers:
x = int(input("Enter 1st number: "))
y = int(input("Enter 2nd number: "))
z = int(input("Enter 3rd number: "))
result = (x, y, z)
print(max(result))
how it works
result=(x,y,z)
can you explain this line
@@ashiqmohamed6675 you can use print(max(x,y,z)) works the same way
@@DrowsyElephant thank you
Thanks Harsh this works well , but any suggestion on how to handle this using the if , elif , else loop
It is wrong
I started learning python with udemy last month, got so confused that I had to use other methods, you have a great style of teaching and it has helped improved my knowledge of python❤
Code for 2nd question:
a=int(input ('enter first number'))
b=int(input ('enter second number'))
c=int(input ('enter third number'))
num=max(a,b,c)
print(num)
Assignment #2:
import math
x = int(input("Please enter a number: "))
y = int(input("Please enter a number: "))
z = int(input("Please enter a number: "))
a = max(x,y,z)
print(str(a) + " this is the largest number")
151 thumbs down are the people who doesn't know to appreciate someone's effort to educate people.. Doing selfless services.. For us this teacher is great.. naveen Sir.. U Rock 😎
num = []
for i in range(1,4):
num.append(int(input(f"Enter the {i} value ")))
print(max(num))
x=int(input('enter a number1'))
y=int(input('enter a number2'))
if x > y:
print('x is the greater number')
else:
print('y is the greater number')
y=int(input())
z=int(input())
a=int(input())
x=[int(y),int(z),int(a)]
print(max(x),"is largest")
@@anuragchauhan2577 here we want to use if else and elif and write the program
This is the best python teacher I've ever seen
value1 = float(input("Please enter three numbers"))
value2 = float(input("Please enter three numbers"))
value3 = float(input("Please enter three numbers"))
arr = [value1,value2,value3]
arr.sort()
print("The higest value is ", arr[2])
What if all 3 are equal?
@@shubhrajit2117 lol
x=input("Enter 1st value")
y=input("Enter 2nd value")
z=input("Enter 3rd value")
if zy:
print("1st value is Greatest")
elif xz:
print("2nd value is Greatest")
elif yx:
print("3rd value is Greatest")
*before watching*
me : i hate python
*after watching some of the vids *
also me : oh shit im addicted
Achaa
true
Yeah
I just completed a code . Watching you sir . Thanks a lot for your work!!
Sir,Thank you very much
because of you I am feeling so confident and enthusiastic in the coding domain inspite of being a mechanical engineering student.
Love from West bengal
Amazing stuff Sir, You are the best You-tuber for learning Python :)
This is the most basic one which i hope everyone can understand, i found it easy to type.
# Find the greatest value.
x, y, z=(input('enter x: '), input("enter y: "), input("enter z: "))
float(x), float(y), float(z)
if x > y and x > z:
print("The greatest value is", x)
elif y > x and y > z:
print('The greatest value is ', y)
else:
print('The greatest value is ', z)
number1 = int(input("Enter the First Number"))
number2 =int(input("Enter Thee second Number"))
number3 =int(input("Enter the Third Number"))
if (number1>number2) and (number1>number3):
print("Number1 is the grater number")
elif number2>number1 and number2>number3:
print("NUmber2 is the greatest Number")
else:
print("wow,Number3 is the grater then other")
where is the question LOL
@@adarsh6750 kahena kya chate ho?
Outstanding bro...
what if num 1< num 2 but num1 is greater than num3? then number 2 is greatest.
yor spaleng iz veri bed
now a days am addicted to python. thats coz of you sir.thank you so much sir..
n=int(input("enter an integer"))
if ny)and(y>z):
print("'x'is biggest")
elif (y>x)and(y>z):
print("'y is biggest")
else:
print("'z' is biggest")
x = int(input("int 1 : "))
y = int(input("int 2 : "))
z = int(input("int 3 : "))
highest = max(x, y, z)
print(highest)
You can also write it like this as a beginner::
a=int(input('Enter the 1st no.: '))
b=int(input('Enter the 2nd no.: '))
c=int(input('Enter the 3rd no.: '))
if(a>b and a>c):
print('the greatet no is',a))
elif(a>c):
print('{} is largest'.format(b))
else:
print('{} Is largest'.format(c))
Why only integer?
For quiz question 2.)
num1=int(input('enter a number :'))
num2=int(input('enter a number :'))
num3=int(input('enter a number :'))
If num1>num2>num3:
print(num1)
If num1
Here are the codes:
Positive/Negative:
x = int(input("Enter any integer value: "))
if (x >= 0):
print(" Positive")
else:
print("Negative")
Maximum number:
x = int(input("Enter the value of x: "))
y = int(input("Enter the value of y: "))
z = int(input("Enter the value of z: "))
if max(x,y,z) == x :
print(x)
elif max(x,y,z) == y :
print(y)
elif max(x,y,z) == z :
print(z)
Enter input values as x = 10
y = 9
Z = 9
U will get 9 Y is greatest
Idk why
print("enter 3 numbers")
numbers=[input(),input(),input()]
x=max(numbers)
print(x, "is greatest of all")
a=int(input("1st no"))
b=int(input("2nd"))
c=int(input("3rd"))
num=[a,b,c]
num.sort()
#IT WILL SORT NO. IN ASCENDING ORDER
print(num[2])
i think the sort list will be print like this "print(num)"
@@vineetsingh4318 no
You can also use max(num). This will directly give the greatest no.
@@vineetsingh4318 it doesn't really matter, the list will be stored in the computer anyway
a = int(input("1st no"))
b = int(input("2nd"))
c = int(input("3rd"))
li = [a,b,c]
li.sort()
print(li)
Like this?
one of best tutor i have seen!!!!!
ir this is your answer
x = int(input("enter the number - "))
if x > 0 :
print("positive integer")
else :
print("negative integer ")
hope it is correct
This is kinda correct. You should put an elif statement just in case x=0
You r great teacher not only for giving such a great knowledge only also because u makes coding so intresting. I love the way of your teaching❤.
Thanku so much..
His programming teaching skills are on another level😁😀
1.
x=2.995
if x >=0:
print("Positive Value")
else:
print("Negative Value")
2.
print("Welcome to the greatest value calculator, enter three values to begin")
x= int(input('Enter First Number'))
y= int(input('Enter Second Number'))
z= int(input('Enter Last Number'))
if x>y and x>z:
print(x)
elif y>x and y>z:
print(y)
elif z>y and z>x:
print(z)
else:
print("Values are Equal or Wrong Input")
set=[2,1,4,5]
set.sort()
print(set)
print(max(set))
You don't need to sort that list...
First Answer=
x=int(input('write the number')
if x
x = int(input("no."))
If x < 0 :
print ('Negative')
Elif (x > 0) :
print ('Positive')
Elif (x == 0) :
print ('Zero')
HW done
Enjoying it!!!
Really interesting and fun to watch ❤
sir, you are too good at teaching. and your edits makes easy to learn. you explain every simple thing ,, so that we will understand completly.
I observed that something different in this channel...
Perhaps I am unable to concatenate Ex. z=min(a,b,c) print("Min number is " + z) OR print("Min number is ") & z
@@harshavardhandsh5190 try this:- print("Min number is " , z)
I dnt understand
@@harshavardhandsh5190 else:- print( "Min number is" + str(z) )
as because z is an integer so we need to convert it to string either by writing str(your integer) or print("Your statement" , your integer)
x, y, z = input("Enter a three value: ").split()
if x>y and x>z :
print ('x is largest')
elif y>z and y>x :
print('y is largest')
else :
print('z is largest')
Sir, colon is missed at the end :-) I tried running