Sir next level series hai yee We want same type of series in Excel, SQL, Power BI, Maths etc ..., With real world projects and interviews questions and answers sir 😊
Hat's off to you Rishab. What a great job you're doing. Very helpful playlist to learn Python in an easy way. The main points to be focused for your videos are, Calm & quit with no hurry and in very effective way of teaching so that even a beginner( like me) feels it is very easy to learn tech skills. Thank you very much.
year = int(input("Enter a year to check if year is leap year or not: ")) if (year % 4 ==0) or (year % 400==0 ): print(f"{year} is leap year ") elif year % 100 !=0: print(f"{year} is not a leap year") hope this is correct
@@RishabhMishraOfficial year=int(input("Enter the year: ")) if year%4==0 and year%100!=0 or year%400==0: print(f"{year} is a leap year") else: print(f"{year} is a not leap year")
number = int(input("enter a number: ")) if (number >0): if (number % 2 == 0): print("the number is positive and even") else: print ("the number is positive and odd") elif (number==0): print ("the number is zero") else: print ("the number is negative")
Rishabh bhai numpy aur pandas par kab daloge video and kuch ek esa video jo python use for data analytics purpose ho please batana bhai I am studying only with the Help of your videos Thanks
Hi Rishabh, Below is my code for 2nd assignment. Correct me if it is wrong. year = int(input("Enter the year = ")) if (year/4==0) or (year/400==0): print("This is leap year") elif year/100: print("This is not leap year") else: print("This is not leap year")
value = None if value: print("Value is True") else: print("Value is False") it will print False, because None is like giving 0 or empty value. so it will print False
# Leap Year Checker Y = int(input("Enter the year you want to check: ")) Year = Y%4 Status = "Leap year" if Year == 0 else "Not a Leap Year" print(Status)
Hi rishabh bhai maine data analytics parsue kiya hai muze interview ka preparation our daily program practice karana hai to kuch suggest karo na practice karne ke liye question kaha se search kare
Year=(input("enter year :")) Leapyear=int(year)/4 If leapyear %4 ==0: Print(" this is leap year") Else: Print("this is not leap year") Hope this is correct way to do this...tell me if it's ok to do this way or not
Value = None If value : print ("Value is True") else : print ("Value is False") It returns false because None is giving a 0 or empty value. So it print false .
Hello Bhaiya i am looking for the training institutes for Data Science. They are as followed 1. Learnbay 2. Data Mites 3. IT vedant 4. 360DIGITMG which one i should choose. please help me out in these . If not from these please recommend me the institute which will really help me in building the base of my data science journey (i am looking to have classes in the OFFLINE mode). I am a fresher 2024 Graduate. Waiting to hear from you.
year = int(input("Enter year o check it's a leap year or not: ")) if year % 4 == 0 and year % 100 != 0 or year % 400 == 0: print(f"{year} is leap year") else: print(f"{year} is not leap year")
# Question 2 - write a simple program to determine if a given year leap year or not using user input Birth_Year = int(input("In which year do you born")) if Birth_Year % 4 == 0: print("Oh! you born in a leap year") else : print("Oh! that was not a leap year")
I've some modification in code number = int(input("Enter a number here : ")) if number > 0: if number % 2 == 0: print(f"{number} is even Number") else: print(f"{number} is odd Number") else: if number == 0: print(f"{number} is Zero") else: print(f"{number} is negative Number")
Sir m Pakistan sy hun bs information technology kia h sath m job bi krraha hun but m 2 saal sy videos dakh raha hun apply krraha hun lakin koi khass response ni milraha
@@RishabhMishraOfficial but inviewer ko live dashboard kaise dikhye, aur power bi + SQL project mene Kiya hai to SQL wala portion kaise show hota hai. Me abhi SAP me kam kar raha hu so please guide me.
Sir next level series hai yee
We want same type of series in
Excel, SQL, Power BI, Maths etc ...,
With real world projects and interviews questions and answers sir 😊
Yeahhhh finally video aa gyi❤ .
Jiska mujhe tha intezar jiske liye dil tha bekarar wo ghadi aa gyi aa gyi...
😅
next level Rishabh sir. LOVE you sir
Glad you liked ✅️
Amazing series, even non-IT people can learn from it. Well done bro
Glad it's helpful ✅️
Hat's off to you Rishab.
What a great job you're doing.
Very helpful playlist to learn Python in an easy way.
The main points to be focused for your videos are,
Calm & quit with no hurry and in very effective way of teaching so that even a beginner( like me) feels it is very easy to learn tech skills.
Thank you very much.
Thank you n glad you liked it ✅️
Thank you sir...U are the best may god fulfill all your wishes ❤❤❤❤❤
Glad you liked ✅️
Just awesome.. just the right pace and easy way for everyone. looking forward to the next tutorial.
Glad you liked it! ✅️
You are BEST ❤
Glad you liked the content ✅️
Congratulations Rishabh bhaiya on 300K, India ka top youtube channel for data analytics 🎉🎊
This series is so amazing and the way of teaching is also great.
Thank you Rishabh bhai
Glad you liked ✅️
Thanks sir❤❤❤❤❤
Glad you liked ✅️
@@RishabhMishraOfficial
Thanks sir
Sir make a video for data analytics roadmap for 2024
Sunday Special python video!! abhitak ka lamba video hai yeh (filal) 🙂 !! many congo for 300k bro
Glad you liked ✅️ thank you so much ❤️🚀
@@RishabhMishraOfficial keep growing bro!! and pls pls never stop this DA videos, hume chiaye apkey jaisa koi jo hume bataye yeh sab. thanks again
Sir, thanks for Python course ❤❤❤❤❤❤
Glad you liked the
Congratulations bhaiya for 3 lakh subs 🎉
Thanks a lot ✅️
We waited a lot for next vdo sir🤗
Glad you liked ✅️
thanks sir g happy teacher day
Thank you 🚀
Congratulations Brother for 300k😇
Thank you for supporting 🚀
year = int(input("Enter a year to check if year is leap year or not: "))
if (year % 4 ==0) or (year % 400==0 ):
print(f"{year} is leap year ")
elif year % 100 !=0:
print(f"{year} is not a leap year")
hope this is correct
True hai bro
Awesome ✅️
Why use elif in this case?
thanks bro
Glad you liked ✅️
year = int(input("enter you year: "))
if (year % 400==0) or (year%4==0)or(year%100==0):
print("this is leap year")
else:
print("this is normal year")
Awesome ✅️
#programme for leap year -:
a=int(input("enter the year:"))
if a%4==0:
print("it is leap year ")
else:
print("not a leap year")
Code is correct but need to update the leap year logic
year=int(input("Enter a year"))
if year%4==0:
print("leap year")
else:
print("not a leap year")
Code is correct but need to update the leap tear logic
@@RishabhMishraOfficial year=int(input("Enter the year: "))
if year%4==0 and year%100!=0 or year%400==0:
print(f"{year} is a leap year")
else:
print(f"{year} is a not leap year")
number = int(input("enter a number: "))
if (number >0):
if (number % 2 == 0):
print("the number is positive and even")
else:
print ("the number is positive and odd")
elif (number==0):
print ("the number is zero")
else:
print ("the number is negative")
❤
Rishabh bhai numpy aur pandas par kab daloge video and kuch ek esa video jo python use for data analytics purpose ho please batana bhai I am studying only with the Help of your videos
Thanks
num2 = int(input("Enter a year: "))
if num2 % 2 == 0:
print("This is not a leap year")
else:
print("This is a leap year")
When will you be creating Tableau end to end project?
Hi Rishabh, Below is my code for 2nd assignment.
Correct me if it is wrong.
year = int(input("Enter the year = "))
if (year/4==0) or (year/400==0):
print("This is leap year")
elif year/100:
print("This is not leap year")
else:
print("This is not leap year")
Code is correct 👌
❤❤❤
value = None
if value:
print("Value is True")
else:
print("Value is False")
it will print False, because None is like giving 0 or empty value. so it will print False
# Leap Year Checker
Y = int(input("Enter the year you want to check: "))
Year = Y%4
Status = "Leap year" if Year == 0 else "Not a Leap Year"
print(Status)
# Ques. 1 - what is expected output and reason?
value = "None"
if value :
print("Value is true")
else:
print("Value is false")
value = "none"
if value == "none":
print("value is true")
else:
print("value is false")
how can you add # in all statements in just a single click plz tell the function name as well as its shortcut.
Sir kya non tech background walo ke data analysis possible h
Yess bilkul, if you hv relevant skills and experience
Hi rishabh bhai maine data analytics parsue kiya hai muze interview ka preparation our daily program practice karana hai to kuch suggest karo na practice karne ke liye question kaha se search kare
Jaldi jaldi dalo please
if a % 4:
print("This is a not leap year")
else:
print("This is a leap year")
Code is correct but need to update the leap year logic
Year=(input("enter year :"))
Leapyear=int(year)/4
If leapyear %4 ==0:
Print(" this is leap year")
Else:
Print("this is not leap year")
Hope this is correct way to do this...tell me if it's ok to do this way or not
Hlo Sir,
I m commerce background currently persuing mba .
I have some doubt or ques about data analyst job .
Value = None
If value :
print ("Value is True")
else :
print ("Value is False")
It returns false because None is giving a 0 or empty value. So it print false .
Awesome ✅️
🌱🎉
Hello Bhaiya i am looking for the training institutes for Data Science. They are as followed
1. Learnbay
2. Data Mites
3. IT vedant
4. 360DIGITMG
which one i should choose.
please help me out in these .
If not from these please recommend me the institute which will really help me in building the base of my data science journey (i am looking to have classes in the OFFLINE mode).
I am a fresher 2024 Graduate.
Waiting to hear from you.
Hii, sorry but i never heard anything about these institutions 😕
year = int(input("Enter year o check it's a leap year or not: "))
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
print(f"{year} is leap year")
else:
print(f"{year} is not leap year")
# Question 2 - write a simple program to determine if a given year leap year or not using user input
Birth_Year = int(input("In which year do you born"))
if Birth_Year % 4 == 0:
print("Oh! you born in a leap year")
else :
print("Oh! that was not a leap year")
I've some modification in code
number = int(input("Enter a number here : "))
if number > 0:
if number % 2 == 0:
print(f"{number} is even Number")
else:
print(f"{number} is odd Number")
else:
if number == 0:
print(f"{number} is Zero")
else:
print(f"{number} is negative Number")
Next video kab aayegi
Tomo evening
Sir m Pakistan sy hun bs information technology kia h sath m job bi krraha hun but m 2 saal sy videos dakh raha hun apply krraha hun lakin koi khass response ni milraha
Bhai power bi project ki link resume me kaise mention karu .... company ka mail id nahi hai...pls help
Upload on Github n add link in resume
@@RishabhMishraOfficial but inviewer ko live dashboard kaise dikhye, aur power bi + SQL project mene Kiya hai to SQL wala portion kaise show hota hai. Me abhi SAP me kam kar raha hu so please guide me.
year = int(input("Enter a year"))
if year % 4 ==0 or year % 400 == 0:
print("This is a leap year")
else:
print("This is not a leap year")
18:59 aapne bhi exams di thi kya ??
User_input= input("share your answer")
If exam diya hai to:
Print("like")
Else :
Print("comment")
Rishabh bhaiya free me data analytics ka Credificate kaise paye. क्यों कि Ham financial struggle कर रहे है bhaiya kya aap हमारा help कर सकते है,🙏
Coursera mei free certificates hai, use financial aid
But kaise coursera पर free certificate पाए@@RishabhMishraOfficial
value = None
if value:
print("This is True")
else:
print("This is false")
return false bcz none is giving a 0 or empty value. So it will print false
Awesome ✅️