Strings are a data type that stores a sequence of characters, and can be created in different ways. 00:01 Python uses double quotes and escape sequences for creating strings. 02:06 Concatenating and finding length of strings in Python 06:09 String manipulation in Python and understanding string length and indexing 08:27 Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning. 13:02 Explaining string indexing and slicing in Python 15:03 Backward counting is helpful for string manipulation 18:50 Understanding string functions, ends with 20:47 Learn about string replacement and find functions in Python 24:35 Count function in strings can be used to find the occurrences of a substring 26:47 Conditional statements are used to execute code based on specific conditions. 30:36 Using indentation and conditional statements in Python 32:31 Difference between 'if' and 'lf' 36:27 Using 'if' and 'else' statements in Python 38:22 Using conditional statements and logical operators to calculate grades. 42:09 Using conditional statements to determine grades based on student marks in Python 44:17 Even numbers are divisible by two with no remainder 48:23 Program to find the greatest value among three numbers 50:31 Understanding multiples and basic coding practice 55:10 Thanks me later 👍
One word for this girl *AWESOME* 😢 Unfortunately, We had some weirdos in schools and college who really work hard to ruin our career, now gradually things making sense, thank you for your clean and clear method of teaching. 🎉❤
Hello all This one the best python basic lecture you will ever get, In the entire video she never asked for subscribe or like. Let’s encourage her to do more courses like this and help crores of students and learner’s. Keep up the good work Shraddha and keep on helping people.
a1=int(input("Enter 1st no . = ")) a2=int(input("Enter 2nd no . = ")) a3=int(input("Enter 3rd no . = ")) a4=int(input("Enter 4th no . = ")) if(a1>a2 and a1>a3 and a1>a4): print("1st no. is largest") elif(a2>a3 and a2>a4): print("2nd no. is largest") elif(a3>a4): print("3rd no. is largest") else: print("4th no. is largest")
num1 = int(input("Enter the first number: ")) num2 = int(input("Enter the second number: ")) num3 = int(input("Enter the third number: ")) num4 = int(input("Enter the fourth number: ")) # Use the max function greatest = max(num1, num2, num3, num4) print(f"The greatest number is", greatest)
Thank you for making these series, while I was doing 1st one I wished I get the second lecture without breaking time and you made it true , You making it cup of a tea! thank you so much ❤❤
H.w problem a = int(input("enter first number: ")) b = int(input("enter second number:")) c = int(input("enter third number: ")) d = int(input("enter fourth number: ")) If(a>=b and a>=c and a>=d): Print("first number is largest" , a) elif(b>=c and b>=d): Print("second number is largest", b) elif(c>=d): Print("third number is largest", c) else: Print("fourth number is largest" , d) I think this is right 👍 53:45😅
Please complete the series mam You are the only teacher whose teaching I understand the most If you complete the series with project and all then its good otherwise please launch a course on apna college I am willing to buy it if I gets like Sigma batch
I have a request the amount of energy and effort you are putting on this videos to make it fruitful , it is really heart touching to the listeners, but the moment if you will make your channel commercialize again , those who not able to pay single rupee, their self confidence and trust on you will destroy. So just share your knowledge freely and spread it across the globe. Surly all blessings will come to you towards success. The ultimate truth is the viewers are already paying for internet amount to watch your video by hook or crook. Hope you understand the pain of the viewers.
Thanks for all your help. practice maximum out of 4 different number a = int(input("Enter First number")) b = int(input("Enter Second number")) c = int(input("Enter Third number")) d= int(input("Enter Forth number")) if a>=b and a>=c and a>=d: print("First number is Greatest: ", a) elif b>=c and b>=d: print("Second number is Greatest: ", b) elif c>=d: print("Third number is Greatest: ", c) else: print("Forth number is Greatest: ", d)
Yeah, I did the same but then i tried giving a three digit input such as a = 67, b = 79, c = 54, d = 525...but it got error after trying very much then i tried replacing three digit number with 2 digit and got it correct...and then realised that its just taking 2 digits from starting in larger digit numbers...if i would put 875 then coz 87 is greater than 79 it will output 875 :)
shradha di you are the best teacher in the world , i am from non IT background , i am also a non science student but i understand concepts so well because you teach them so well .I am so grateful to you. Thank you so muchhhhhhh☺☺☺☺☺☺
very great idea i am waiting for many month for dsa with python because on youtube no one teach dsa with python and i request all student who connected with apna college comment dsa with python
Keep learning and keep exploring...very great line...I am following you since 4+ years...but now gradually I'm understanding that why you say this line.....
i found this one playlist only on youtube and its amazing you are a very good teacher sister this is very easy to lern course for all the beginers of python programming language thank you so much to teach us like this really its to good
Thanks for all your help. practice maximum out of 4 different number a = int(input("Enter First number")) b = int(input("Enter Second number")) c = int(input("Enter Third number")) d= int(input("Enter Forth number")) if a>=b and a>=c and a>=d: print("First number is Greatest: ", a) elif b>=c and b>=d: print("Second number is Greatest: ", b) elif c>=d: print("Third number is Greatest: ", c) else: print("Forth number is Greatest: ", d) Yeah, I did the same but then i tried giving a three digit input such as a = 67, b = 79, c = 54, d = 525...but it got error after trying very much then i tried replacing three digit number with 2 digit and got it correct...and then realised that its just taking 2 digits from starting in larger digit numbers...if i would put 875 then coz 87 is greater than 79 it will output 875 :)
a = int(input("entern first number")) b = int(input("entern first number")) c = int(input("entern first number")) d = int(input("entern first number")) if(a>=b and a >= c): print("first number is lergest", a ) elif(a>= d ): print("first number is lergest", a ) elif(b>=c): print("seconmd number is lergest", b ) elif(c>=d): print("seconmd number is lergest", c) else: print("third is largest",d) # WAP to find the greatest of 3 number's entered by the user check it
a = int(input("Enter First number")) b = int(input("Enter Second number")) c = int(input("Enter Third number")) d= int(input("Enter Forth number")) if (a>=b and a>=c and a>=d): print("First number is Greatest: ", a) elif (b>=c and b>=d): print("Second number is Greatest: ", b) elif (c>=d): print("Third number is Greatest: ", c) else: print("Forth number is Greatest: ", d) # the same code is running you have to write the condition under the bracket ( )
This is the best series of python i have ever seen on yt ✨....and your way of teaching is just awesome 💖.. thanks for making efforts for this series ❤ I'm so grateful to u 😌
a = int(input("enter first number : ")) b = int(input("enter second number : ")) c = int(input("enter third number : ")) d = int(input("enter forth number : ")) if(a>=b and a>=c and a>=d): print("largest number =",a) elif(b>=c and b>=d): print("largest number =",b) elif(c>=d): print("largest number =",c) else: print("largest number =",d) ❤❤
I've recently started my masters in AI in bioscience and i was really struggling with the basics of python until i came across your channel!!! You've explained the basics so clearly and to the point that i can actually move on to harder stuff now so thank you so much !!
Thank you so much I was curiously waiting for second lecture ❤❤ Please share 1 video of python series daily.This video is very helpful for the beginners and the others who read python first tiem
I was worried a lot ...how to do ,what to do , but she makes the things very easy ... .it was a long video heads off to her she sat so long to prepare this video and to make the things ease for us .....we really appreciate your work ....thanks from heart ❤️
✦ Strings are a data type that stores a sequence of characters, and can be created in different ways. 00:01 ✦ Python uses double quotes and escape sequences for creating strings. 02:06 ✦ Concatenating and finding length of strings in Python 06:09 ✦ String manipulation in Python and understanding string length and indexing 08:27 ✦ Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning. 13:02 ✦ Explaining string indexing and slicing in Python 15:03 ✦ Backward counting is helpful for string manipulation 18:50 ✦ Understanding string functions, ends with 20:47 ✦ Learn about string replacement and find functions in Python 24:35 ✦ Count function in strings can be used to find the occurrences of a substring 26:47 ✦ Conditional statements are used to execute code based on specific conditions. 30:36 ✦ Using indentation and conditional statements in Python 32:31 ✦ Difference between 'if' and 'lf' 36:27 ✦ Using 'if' and 'else' statements in Python 38:22 ✦ Using conditional statements and logical operators to calculate grades. 42:09 ✦ Using conditional statements to determine grades based on student marks in Python 44:17 ✦ Even numbers are divisible by two with no remainder 48:23 ✦ Program to find the greatest value among three numbers 50:31 ✦ Understanding multiples and basic coding practice
50:00 num1 = int(input("Enter a number: ")) if ((num1 % 2)==0): print("Hah ! It is an Even number🗿🦁") elif ((num1 % 2)!=0): print("Hah ! It is an Odd number ☑")
CODE DONE MAM::::::::::>>{ a=int(input("enter first number:")) b=int(input("enter second number:")) c=int(input("enter third number:")) d=int(input("enter fourth number:")) if(a>=b and a>=c and a>=b): print("first is the largest",a) elif(b>=c and b>=d): print("second is largest",b) elif(c>=d): print("third is the largest",c) else: print("fourth is the largest",d)
In the code to find largest number. If you put numbers in decreasing order it gives wrong answer. For eg. First number=10 Second=9 Third=8 Result:: 9 is largest Can anybody help what is wrong with the code. Edit; 52:46
Your tutorials are always so well-explained and easy to follow.❤ Thank you for this fantastic Python tutorial, your explaination in the lectures was so clear and easy to understand. Looking forward to more tutorials from you. Keep up the great work!👏🏻👏🏻
def draw _ diamond (n) " " "Draws a diamond Shape of Size n . Args: n: The Size of the diamond . " " " for i in range (1,n+1): print(" " " * (n-i) , "*"* (2*i-1)) for i in range (n-1 ,0,-1): print (" " * (n-i) , "*")* (2*i-1)) #Example usage : n=5 draw_diamond(n)
I have a doubt in 24:02 agar hamlog ne str .capitalize() likha toh voh str vala kaise print hua computer ko kaise bata chala ki uppar vala print karna hai
no one have like you on entire yt your explanation teaching style notes every things is top level i mean i love your lectures even not only python i learnt lots of things from yr playlist like css,js,html,dbms and python you r outstanding
This first two lecture are very easy to study and this is so imp for my computer engieneer study & Thank you for making this beautiful and excellent tutorial with this much effort!! ❤❤❤❤❤
53:34 answer Using if - elif if a >= b and a >= c and a >= d: print("first number is largest", a) elif b >= c and b >= d and b >= a: print("second number islargest", b) elif c >= d and c >= a and c >= b: print("third number is largest", c) elif d >= a and d >= b and d >= c: print("fourth number is largest", d)
light = input("What is the colour of light?") if(light == "green"): print("You can go ") elif(light == "red"): print("Wait!!") elif(light == "orange"): print("wait a second")
a = int(input("enter first number")) b = int(input("enter second number")) c = int(input("enter third number")) d = int(input("enter fourth number")) if(a >= b and a >= c and a >= d): print("first number is largest", a) elif(b >=c ): print("second number is largest", b) elif(c >= d): print("enter third number", c) else: print("fourth number is largest", d)
Strings are a data type that stores a sequence of characters, and can be created in different ways.
00:01
Python uses double quotes and escape sequences for creating strings.
02:06
Concatenating and finding length of strings in Python
06:09
String manipulation in Python and understanding string length and indexing
08:27
Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning.
13:02
Explaining string indexing and slicing in Python
15:03
Backward counting is helpful for string manipulation
18:50
Understanding string functions, ends with
20:47
Learn about string replacement and find functions in Python
24:35
Count function in strings can be used to find the occurrences of a substring
26:47
Conditional statements are used to execute code based on specific conditions.
30:36
Using indentation and conditional statements in Python
32:31
Difference between 'if' and 'lf'
36:27
Using 'if' and 'else' statements in Python
38:22
Using conditional statements and logical operators to calculate grades.
42:09
Using conditional statements to determine grades based on student marks in Python
44:17
Even numbers are divisible by two with no remainder
48:23
Program to find the greatest value among three numbers
50:31
Understanding multiples and basic coding practice
55:10
Thanks me later 👍
You are a livesaver❤❤😊😅
thanks a lot but i read comments whn i ended the videoo
@@vishal1980able Us bhai us
th-cam.com/video/Eyp36KUYC_g/w-d-xo.html
lovr u bro
One word for this girl *AWESOME*
😢 Unfortunately, We had some weirdos in schools and college who really work hard to ruin our career, now gradually things making sense, thank you for your clean and clear method of teaching. 🎉❤
are those bullies?
@@teclues3893 he meant bad teachers
@@teclues3893I don't think so I think he is talking about teacher
people who force to *ONLY STUDY*
Hey what is your profile photo can I know
Hello all
This one the best python basic lecture you will ever get,
In the entire video she never asked for subscribe or like.
Let’s encourage her to do more courses like this and help crores of students and learner’s. Keep up the good work Shraddha and keep on helping people.
for convenience use : windows key + ->(arrow key) to split the windows into 2 tabs so that you can code and watch tutorial simultaneously.
thank u
thanks bro
ye koi kehne wali baat hai ye toh aata hai
Good for those who discovered it for the first time like me
Is these 9 lectures are basic to high level? Or something more we have to learn?
Mam your way of teaching is so good and crystal clear.
I also thought the same😁😁
a1=int(input("Enter 1st no . = "))
a2=int(input("Enter 2nd no . = "))
a3=int(input("Enter 3rd no . = "))
a4=int(input("Enter 4th no . = "))
if(a1>a2 and a1>a3 and a1>a4):
print("1st no. is largest")
elif(a2>a3 and a2>a4):
print("2nd no. is largest")
elif(a3>a4):
print("3rd no. is largest")
else:
print("4th no. is largest")
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))
num3 = int(input("Enter the third number: "))
num4 = int(input("Enter the fourth number: "))
# Use the max function
greatest = max(num1, num2, num3, num4)
print(f"The greatest number is", greatest)
@@ADIATHASANRIYAD THANK YOU FOR THE TIPS☺
@ADIATHASANRIYAD bhai is video me max btaya gya hai??? Ab aisa hai to me c++ me code likh deta hu
@@ADIATHASANRIYAD Thank you soo much guys!you guys are the best!
Wrong
Thank you for making these series, while I was doing 1st one I wished I get the second lecture without breaking time and you made it true , You making it cup of a tea! thank you so much ❤❤
th-cam.com/video/Eyp36KUYC_g/w-d-xo.html
H.w problem
a = int(input("enter first number: "))
b = int(input("enter second number:"))
c = int(input("enter third number: "))
d = int(input("enter fourth number: "))
If(a>=b and a>=c and a>=d):
Print("first number is largest" , a)
elif(b>=c and b>=d):
Print("second number is largest", b)
elif(c>=d):
Print("third number is largest", c)
else:
Print("fourth number is largest" , d)
I think this is right 👍 53:45😅
@subhadipmondal230whats wrong with this code?
It's right
@@ashakumawat4610 1st logical statement is wrng ig
Wonderful brother!.
Right 👍 😅@subhadipmondal230
प्रेरक विचार:खुशी के लिए काम करेंगे तो खुशी नहीं मिलेगी, लेकिन खुश होकर काम करेंगे तो खुशी के साथ ही सफलता भी मिलेगी
Please complete the series mam
You are the only teacher whose teaching I understand the most
If you complete the series with project and all then its good otherwise please launch a course on apna college I am willing to buy it if I gets like Sigma batch
@rehankabir7601 lol😂
I have a request the amount of energy and effort you are putting on this videos to make it fruitful , it is really heart touching to the listeners, but the moment if you will make your channel commercialize again , those who not able to pay single rupee, their self confidence and trust on you will destroy. So just share your knowledge freely and spread it across the globe. Surly all blessings will come to you towards success. The ultimate truth is the viewers are already paying for internet amount to watch your video by hook or crook. Hope you understand the pain of the viewers.
th-cam.com/video/Eyp36KUYC_g/w-d-xo.html
You are a brilliant Teacher . God bless you.
Thanks for all your help. practice maximum out of 4 different number
a = int(input("Enter First number"))
b = int(input("Enter Second number"))
c = int(input("Enter Third number"))
d= int(input("Enter Forth number"))
if a>=b and a>=c and a>=d:
print("First number is Greatest: ", a)
elif b>=c and b>=d:
print("Second number is Greatest: ", b)
elif c>=d:
print("Third number is Greatest: ", c)
else:
print("Forth number is Greatest: ", d)
Yeah, I did the same but then i tried giving a three digit input such as a = 67, b = 79, c = 54, d = 525...but it got error after trying very much then i tried replacing three digit number with 2 digit and got it correct...and then realised that its just taking 2 digits from starting in larger digit numbers...if i would put 875 then coz 87 is greater than 79 it will output 875 :)
Lots of love from Hazaribagh di❤️ ..God bless you alot and goof wishes to u always!!✨️..#started python learning currently 🌟
shradha di you are the best teacher in the world , i am from non IT background , i am also a non science student but i understand concepts so well because you teach them so well .I am so grateful to you.
Thank you so muchhhhhhh☺☺☺☺☺☺
Phir aap python padhne aayi hi kyu h .. neither it background nor a science student.. 😂😂😂..
colour = input("Write the traffic light colour :")
if (colour == "Red"):
print("stop")
elif (colour == "Green"):
print("Go")
elif (colour == "Yellow"):
print("Wait")
output nhi aara ...
else:
print("light is broken")
42.48 we do not need code mark
@Shradha Khapra Didi please check and tell me if i am right or wrong I am new!
Excellent way of teaching. Love for your lectures. Very efficient and easy to understand.From Pakistan
Like 👍🏻 those who want DSA with Python on Apna College 🔥
very great idea i am waiting for many month for dsa with python because on youtube no one teach dsa with python and i request all student who connected with apna college comment dsa with python
Dsa with py
@@parthsojitra9221 dsa with python
dsa with python
DSA with PYTHON ❤
Best Python Tutorial I have ever found on TH-cam.
Thank you for making this beautiful and excellent tutorial with this much effort!!❤❤❤
I have no words for your great efforts Shradha mam and Aman sir❤️ Thank you so much👍
You really explain the topic in detailed manner...I have become your fan..
i am from Pakistan maam you are very good teacher. Thank you so much I was curiously waiting for the second lecture ❤❤
me too
Keep learning and keep exploring...very great line...I am following you since 4+ years...but now gradually I'm understanding that why you say this line.....
Explained everything very effectively in much simpler ways.
Thanks 🙏🏻
जो अपने सपनों को पूरा करने का साहस करता है, वह हर मुश्किल को पार कर सकता है।
excellent , appreciate your efforts Shradha
Thank you so much I was curiously waiting for second lecture ❤❤
th-cam.com/video/Eyp36KUYC_g/w-d-xo.html
You are awesome seriously.....the way you speak ....the way you are teaching...amazing...amazing...amazing....
Awesome class. Shraddha didi's teaching is very easy to understand. Thank you so much ❤
great ☺miss SHRADHA , from Pakistan
i love her method of teaching
This actually helped , Thankyou MAM for making the series
Mam next language C++ full course please ❤
yess
Very cool way of teaching. Perfect, Love you teacher!
BCA Student are here guysss❤❤❤❤
Me also
youtube.com/@Tarun-Thakur77?si=d8bVOp0FD9PEv6si
i found this one playlist only on youtube and its amazing you are a very good teacher sister this is very easy to lern course for all the beginers of python programming language thank you so much to teach us like this really its to good
Thanks for all your help. practice maximum out of 4 different number
a = int(input("Enter First number"))
b = int(input("Enter Second number"))
c = int(input("Enter Third number"))
d= int(input("Enter Forth number"))
if a>=b and a>=c and a>=d:
print("First number is Greatest: ", a)
elif b>=c and b>=d:
print("Second number is Greatest: ", b)
elif c>=d:
print("Third number is Greatest: ", c)
else:
print("Forth number is Greatest: ", d)
Yeah, I did the same but then i tried giving a three digit input such as a = 67, b = 79, c = 54, d = 525...but it got error after trying very much then i tried replacing three digit number with 2 digit and got it correct...and then realised that its just taking 2 digits from starting in larger digit numbers...if i would put 875 then coz 87 is greater than 79 it will output 875 :)
a = int(input("entern first number"))
b = int(input("entern first number"))
c = int(input("entern first number"))
d = int(input("entern first number"))
if(a>=b and a >= c):
print("first number is lergest", a )
elif(a>= d ):
print("first number is lergest", a )
elif(b>=c):
print("seconmd number is lergest", b )
elif(c>=d):
print("seconmd number is lergest", c)
else:
print("third is largest",d)
# WAP to find the greatest of 3 number's entered by the user
check it
a = int(input("Enter First number"))
b = int(input("Enter Second number"))
c = int(input("Enter Third number"))
d= int(input("Enter Forth number"))
if (a>=b and a>=c and a>=d):
print("First number is Greatest: ", a)
elif (b>=c and b>=d):
print("Second number is Greatest: ", b)
elif (c>=d):
print("Third number is Greatest: ", c)
else:
print("Forth number is Greatest: ", d)
# the same code is running you have to write the condition under the bracket ( )
This is the best series of python i have ever seen on yt ✨....and your way of teaching is just awesome 💖.. thanks for making efforts for this series ❤ I'm so grateful to u 😌
Tq mam , I finally completed lecture 1 & it's practice Q's . Your way of teaching helped me a lot .
I'm 40 and learning Python. Thank you, Shraddha and team, for the brilliant job!
Me too 40, learning now python😊
a = int(input("enter first number : "))
b = int(input("enter second number : "))
c = int(input("enter third number : "))
d = int(input("enter forth number : "))
if(a>=b and a>=c and a>=d):
print("largest number =",a)
elif(b>=c and b>=d):
print("largest number =",b)
elif(c>=d):
print("largest number =",c)
else:
print("largest number =",d)
❤❤
yea
Wrong
I've recently started my masters in AI in bioscience and i was really struggling with the basics of python until i came across your channel!!! You've explained the basics so clearly and to the point that i can actually move on to harder stuff now so thank you so much !!
a = int(input("input number : "))
b = 2
e = a % b
if(e == 0):
print("This is an Even number")
else:
print("this is an odd number")
Nice😊
We can simply write as
a=int(input("enter a number "))
If a%2==0:
Print ("number is even")
Else:
Print(number is odd)
😊
@@NsrinivasReddy-kt8js
num = int(input("enter the number"))
if(num % 2 == 0):
print("EVEN")
else:
print("ODD")
MINE IS MORE EZ
🗿🗿
It's correct but your method is confusing a little bit
@@spaceasphalt9510eat 5star do nothing
Hey, at 24:10, You told that str.capitalize() capitalize the first letter but you forget to tell that decapitalizes all other letters in string.
Thank you so much I was curiously waiting for second lecture ❤❤
Please share 1 video of python series daily.This video is very helpful for the beginners and the others who read python first tiem
I was worried a lot ...how to do ,what to do , but she makes the things very easy ... .it was a long video heads off to her she sat so long to prepare this video and to make the things ease for us
.....we really appreciate your work ....thanks from heart ❤️
A = str(" Do you see $")
Print(find[$])
invalid syntax😊
Successfully erroe
Brother, do this to make it run
A = "Do you see $"
print(A.find("$"))
Keep learning!
Thank you so much shradha ❤didi....and thank you so much for give the python full course....❤🙏....
✦
Strings are a data type that stores a sequence of characters, and can be created in different ways.
00:01
✦
Python uses double quotes and escape sequences for creating strings.
02:06
✦
Concatenating and finding length of strings in Python
06:09
✦
String manipulation in Python and understanding string length and indexing
08:27
✦
Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning.
13:02
✦
Explaining string indexing and slicing in Python
15:03
✦
Backward counting is helpful for string manipulation
18:50
✦
Understanding string functions, ends with
20:47
✦
Learn about string replacement and find functions in Python
24:35
✦
Count function in strings can be used to find the occurrences of a substring
26:47
✦
Conditional statements are used to execute code based on specific conditions.
30:36
✦
Using indentation and conditional statements in Python
32:31
✦
Difference between 'if' and 'lf'
36:27
✦
Using 'if' and 'else' statements in Python
38:22
✦
Using conditional statements and logical operators to calculate grades.
42:09
✦
Using conditional statements to determine grades based on student marks in Python
44:17
✦
Even numbers are divisible by two with no remainder
48:23
✦
Program to find the greatest value among three numbers
50:31
✦
Understanding multiples and basic coding practice
50:00
num1 = int(input("Enter a number: "))
if ((num1 % 2)==0):
print("Hah ! It is an Even number🗿🦁")
elif ((num1 % 2)!=0):
print("Hah ! It is an Odd number ☑")
User = "ayush"
Print (user)
Output= hah! It's ayush 😁
@@vikkyjoker1610 👍👍
Thank ❤I love your videos from village
Thanks mam to teach us ❤😊 30:52
Thank You so much!!! This was so helpful!!!!!!!!!!!!!♥♥♥♥♥
Thanks didi you are an excellent teacher
I have no words for you
CODE DONE MAM::::::::::>>{
a=int(input("enter first number:"))
b=int(input("enter second number:"))
c=int(input("enter third number:"))
d=int(input("enter fourth number:"))
if(a>=b and a>=c and a>=b):
print("first is the largest",a)
elif(b>=c and b>=d):
print("second is largest",b)
elif(c>=d):
print("third is the largest",c)
else:
print("fourth is the largest",d)
Such a great lecture ma'am ❤
In the code to find largest number.
If you put numbers in decreasing order it gives wrong answer.
For eg.
First number=10
Second=9
Third=8
Result:: 9 is largest
Can anybody help what is wrong with the code.
Edit; 52:46
elif(b>=c and b>=a) condition deke try karo...it should work
Your Teaching Style is very very very good. Thanks for the Series
Need DSA full Course ❤
Yes me also complete pytho dsa
dsa?
41:29
Marks=int(input("Enter your marks = "))
if(Marks >=90):
print("Grade A")
elif(Marks >=80):
print("Grage B")
elif(Marks >=70):
print("Grade C")
elif(Marks >=60):
print("Grade D")
elif(Marks >=50):
print("Grade E")
else:
print("You are Fail")
print("Your Marks=",Marks)
49:58
Number=int(input("Enter Number "))
Number1= Number%2
if(Number1 == 0):
print("Even")
else:
print("Odd")
Computer Science Technology (CST) koi Dekh rahi ho tho like koro
Kon kon 5th class se dekh rha hai.. 😊
Bhai paida hote hi dekhne lag jata😂
YAHA ROJ KOI TUTTHA HAI KOI HARTHA HAI KOI BIKAR JATA HAI
LAKIN JAMANA USI K JANTA HAI JO INN SAB KE BAAD BHI NIKHAR JATA HAI❤❤😊😊🎉🎉🎉🎉🎉😊😊
This is the best lecture ever
Your tutorials are always so well-explained and easy to follow.❤ Thank you for this fantastic Python tutorial, your explaination in the lectures was so clear and easy to understand. Looking forward to more tutorials from you. Keep up the great work!👏🏻👏🏻
Thankyou maam
Please give a roadmap for machine learning
Which year .?
@stormbreaker8720 final year
@@technicalstatusmuna4594 ek favour kro ge bhai ?
@@technicalstatusmuna4594 mai 1st year hu machine learning start kr du kya ?
@@stormbreaker8720 nehi pehle web development karlo uske baad ya side mai thoda time deke machine learning continue karo
Thank you ❤🎉
Aap bhut acha pdate ho mam dil se thankyou ❤
Try it :
Str=I am a boy
print(str[ : ])
Output :
I am a boy
Strings & Conditional Statements done
Koi 11 class ka dekh raha hai
def draw _ diamond (n)
" " "Draws a diamond Shape of Size n .
Args:
n: The Size of the diamond .
" " "
for i in range (1,n+1):
print(" " " * (n-i) , "*"* (2*i-1))
for i in range (n-1 ,0,-1):
print (" " * (n-i) , "*")* (2*i-1))
#Example usage :
n=5
draw_diamond(n)
Yes
Yes
Mee
MA hu na 1st year best
Thanks didi ❤😊
HELPS ME A LOT 🙏😌#GULABI DIL
#GULABI DIL
#GULABI DIL
Or batao 2025 mai kon Dekh rha h ?☺️
😁😁
Mee
Me
Kaun kaun B tech krne se phle dekh Raha h
Pehle nahi baad mein
Me
@@radhakrishnakn5391 nice ☺️
Me
Very interesting
Excellent way of explaining❤
Please ek playlist on ReactJs
I have a doubt in 24:02 agar hamlog ne str .capitalize() likha toh voh str vala kaise print hua computer ko kaise bata chala ki uppar vala print karna hai
kyuki str me value reassign hua h
Any 6th class student like me?
No,I'm 8,and you are really lucky to start it early .best of luck from my side 👍
Yes bro😊😊😊😊 Mai hu na 🎉🎉🎉🎉🎉
Are khelo masti Karo itani bhi kay jaldi he😅😅
@@pranavtawale6891bc pogo dekhne ki umar mai python dekhre😂
Me to LKG ka hu
no one have like you on entire yt your explanation teaching style notes every things is top level i mean i love your lectures even not only python i learnt lots of things from yr playlist like css,js,html,dbms and python you r outstanding
Thank you mam for this amazing lecture.. 💚
I am in class 11
it will definitely help me in my exams💖
1st year. ??
@@nithamirpur5 Bro class 11(school)
@@vedikasharma4212 great 👍
Maim me aapki sari videos dekhta hu me O level course kar Raha hu AAP ke samjhane ka tarika bahut accha hai ❤❤❤❤❤❤
Electrical koi ye dekh raha to like kre
@@nithamirpur5 passout hu cec college Jharkhand
@@nithamirpur5 sayad tm to nit se ho
Electrical Kashmir University 6th sem
@@kuchv6564 hn jii
@@HimanakanKashyap well done 👍 bro rise and shine ✨
I have no words to say for appreciation for u .osm lecture.
Kisi ne college me fee dekar yaha seekh rahe hai😂😂
Present
Shraddha you really earned my respect...
Koi civil engineering wala bhi hai kya 😅😅😅
Ja dihadi laga
Ja bete leveling kar Jake 😂
😂😂😂
A very informative lecture.Thankyou Shradha didi😃🙏
Class 11 attendance button
I'm in class 8 😁
@@mrgamer-mk4wiI am in class 2
Practicle question solve successfully in first attempt
Thank you shradha di.👍❤
Me from class 7 😅😃
Aditya tu hai ?
This first two lecture are very easy to study and this is so imp for my computer engieneer study
& Thank you for making this beautiful and excellent tutorial with this much effort!!
❤❤❤❤❤
Bsc cs or it anyone 😅 ????
I'm bsc cs student 🙋♂️
Im going to bsc cs soon
I am in 10 th bro
I'm IT student
@@snowygirl8043 hii me too
love you mam kasam sa kia samjata hy
ma na pura youtube chan mara hy ap jasa koi python nahi samjta , love you and god bless you
Happy Navratri Happy Coding didi
53:34 answer
Using if - elif
if a >= b and a >= c and a >= d:
print("first number is largest", a)
elif b >= c and b >= d and b >= a:
print("second number islargest", b)
elif c >= d and c >= a and c >= b:
print("third number is largest", c)
elif d >= a and d >= b and d >= c:
print("fourth number is largest", d)
value=int(input("Enter a number: "))
if(value % 2 == 0):
print("Num is Even")
else:
print("Num is Odd")
Didi sabse achhi teacher ho!!!
Abhi aayega na asli mazaa...😅😅❤❤ Thanks maam
light = input("What is the colour of light?")
if(light == "green"):
print("You can go ")
elif(light == "red"):
print("Wait!!")
elif(light == "orange"):
print("wait a second")
Didi, I am from Bangladesh. But I am very happy because your class have helped me to learn python very easily.🧡🧡
a = int(input("enter first number"))
b = int(input("enter second number"))
c = int(input("enter third number"))
d = int(input("enter fourth number"))
if(a >= b and a >= c and a >= d):
print("first number is largest", a)
elif(b >=c ):
print("second number is largest", b)
elif(c >= d):
print("enter third number", c)
else:
print("fourth number is largest", d)