I am in 8th grade and tomorrow is my practical test of computer.....You helped me so much 🙏
@SuribhaiMinecraftАй бұрын
I am also in class 8th may u have good luck for that day
@Freefireboy-j4xАй бұрын
@SuribhaiMinecraft yep...I scored full marks in my practical test. THANKS 😊 FOR YOUR support 🙏
@jatin607 Жыл бұрын
Sir why are you left the Java playlist incomplete. Sir you are making so much efforts to make the video and we students are also look for the content which is completed.kindly upload the remaining video of Java playlist
@shivamchakrawarti8262 Жыл бұрын
Great lecture sir if it is possible then please upload these lectures per day so that we remain consistent..
@daregamerboy2255 Жыл бұрын
Thank u for your effort sir 🙏
@RealRadaiZabala Жыл бұрын
You are a great teacher, thank you very much... @Neso Academy
@SushilaMeena-1804 Жыл бұрын
Today's i perform this code in my lab but I can't understand but now my concept clear😊😊
@leealvin7671 Жыл бұрын
Let’s take n = 6 n = 6 if n % 2 == 0: print(“Number is divisible by 2”) elif n % 3 == 0: print(“Number is divisible by 3”) else: print(“Number is neither divisible by 2 nor 3”) print(“Done!”) The output will be: Number is divisible by 2 Done! Why is it though, even though 6 can also be divisible by 3 Reason: Since the first condition is satisfied, Python interpreter wouldn’t consider the second condition onwards and will continue after exiting the if-elif-else statement. Improvement: n = 6 if n % 2 == 0 & n % 3 == 0: print(“Number is divisible by 2 and 3”) elif n % 2 == 0: print(“Number is divisible by 2”) elif n % 3 == 0: print(“Number is divisible by 3”) else: print(“Number is neither divisible by 2 nor 3”) print(“Done!”) By adding a line of code, you may get the desired output Output: Number is divisible by 2 and 3 Done!
@doctorbongumusa15665 ай бұрын
python does not allow & unless you use ("&") it will then identify it as a string but will result in a syntax error
@kristinamwangekan2471 Жыл бұрын
Thank you...well explained
@chandraj105310 ай бұрын
Good explanation sir
@alexjrmatta2 ай бұрын
Excelente video !❤❤🎉🎉
@hadi1725Ай бұрын
thank u for ur hard work
@studentgroup1017 Жыл бұрын
Thank you for Amazing Python course, Tottle how many videos are there of this course. Please replay
@adikwusunday39073 ай бұрын
Very well lecture.
@PacifistNihilist4 ай бұрын
Thank you for the explanation. Also thank you for explaining what WAP meant because I had something totally different in mind 😂
@GousyaShaik-bq3xy Жыл бұрын
Happy teacher's day sir😅
@kajalHere-r1d5 ай бұрын
thankyou for this ...
@DeathDishonor-i9k11 күн бұрын
thanks a lot
@zaki695 Жыл бұрын
Thank you sir
@MaTHNERVEs8 ай бұрын
How can i get pdf of class. I need this. My exam is knocking doors
@GitaAska-is6yz8 ай бұрын
Tutorial python tricks and modifications
@lawrenceoko17835 ай бұрын
Great
@TheZentleMan10 ай бұрын
Must run it 😂😅 print("Do you want to know what you were in a past life?") while True: a=input("enter 'yes' or 'no' to continue :") if a=="yes": print(" Chutiya thhe tum!") break elif a=="no": print(" toh bhaad mein jao phir! ") break else: print(" PLEASE ENTER ONLY 'yes' or 'no' ")