Kon kon 2024 ke last month December main dekh raha hai
@FRIDAY23-editz6 күн бұрын
😶🤚
@MrPred-f9q6 күн бұрын
😂
@nobitagaming8175 күн бұрын
🖐
@SoumodipNaskar092 күн бұрын
Mai
@FRIDAY23-editz2 күн бұрын
@SoumodipNaskar09 Bro Where's your motherland?
@pranav_c1710 ай бұрын
Best channel for all coders 🎉❤
@mehendiparveen23134 ай бұрын
Right
@bhumikakesharwani-ii4ii8 ай бұрын
I didn't know how to write a python code but i am watching your video so i completely understand and make program thankyou so much and Great full video
@Anpadh_engineer4863 ай бұрын
use vs code To write code
@gchethan94722 ай бұрын
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.
@leptoketrin10 ай бұрын
BCA students are here ❤❤❤
@Aryan_Singh_coder10 ай бұрын
Bhai BCA karke bhi coding kar sakte hai I am in 11 th
@KakashiHatake-ux1jq10 ай бұрын
No btech CSE students
@KakashiHatake-ux1jq10 ай бұрын
@@Aryan_Singh_coder bhai bca mai coding syllabus me hi rheti hai
@KakashiHatake-ux1jq10 ай бұрын
@@Aryan_Singh_codertry kar ki koi ache college me CSE mile bca ko backup me rakh
@Aryan_Singh_coder10 ай бұрын
@@KakashiHatake-ux1jq thanks bro
@Mr_Andy_Gamer4 ай бұрын
30:42 WAP 3 favourite movies and store then in a list a = input("enter a 1st movie:") b = input("enter a 2nd movie:") c = input("enter a 3rd movie:") Favourite_movie = [a,b,c] Print(Favourite_movie)
@fahadsiddique1201Күн бұрын
Favourite_movie = [] a = input("enter a 1st movie:") Favourite_movie.append(a) b = input("enter a 2nd movie:") Favourite_movie.append(b) c = input("enter a 3rd movie:") Favourite_movie.append(c) print(Favourite_movie) print(type(Favourite_movie))
@premsharma25955 ай бұрын
00:01 Lists and tuples in Python are built-in data types for storing set of values. 02:41 Lists in Python can store multiple values and can be accessed by index 06:49 Lists in Python allow mutation while strings do not. 09:01 Slicing in lists allows obtaining a sublist based on start and end indexes. 13:01 List methods in Python 15:08 The sort method in Python does not return anything, it arranges the list in place. 19:17 List insert method in Python 21:15 List method operations like pop, copy, and count 25:33 Creating and printing single value tuples in Python 27:33 Tuples in Python can be sliced and have methods like index and count. 31:12 Storing and appending values in a list in Python 33:40 Checking for Palindrome in a List 37:27 Understanding Palindromes in Python 39:25 Understanding palindromes and counting students' grades in tuples.
@sunehabhongle84405 ай бұрын
Thanks dude!!
@_kaustubh_064 ай бұрын
Already description me mentioned hn.
@paraskumarkoyarh61734 ай бұрын
Concepts directly delivered with no time waste, most helpful and learning video I'm non cs guy and now i feel i know something in this field, thank you didi, god bless you 😊
@vishal1980able9 ай бұрын
ma'am i did the 1st question without append😅 my code was : movie = input("enter your 1st favourite movie") movie2 = input("enter your 2nd favourite movie") movie3 = input("enter your 3rd favourite movie") print ("the list of your favourite movies is : " , [movie , movie2 , movie3]) and it was fully workingg
@its_shagufta-codes8 ай бұрын
i did the same
@vishal1980able8 ай бұрын
@@its_shagufta-codes yup bro and this one is easy
@suneelchaurasiya6176Ай бұрын
I also did same
@gamer-gy3rvАй бұрын
Same bro😂
@ICEDPENGUJNАй бұрын
check the type aik bar bhai
@sakshamgupta-jj4go2 ай бұрын
32:33 We can also do like this . Movie1=input("Enter the first movie : ") Movie2=input("Enter your Second Movie : ") Movie3=input("Enter your Third Movie : ") list=[Movie1,Movie2,Movie3] print(list) Output = Same aaya . Am i right Shradha Didi. Why we use append function we have to store it in List. Not in a Sorting way
@suhaibshameem4900Ай бұрын
same i did, i just use input, and then list [x, y, z] and print list 😂
@D6Ell3 ай бұрын
Anyone from September 2024
@Rajput_harsh_00092 ай бұрын
Yes
@renukaverma76402 ай бұрын
Me
@arohi_3032 ай бұрын
yss
@Rajput_harsh_00092 ай бұрын
@@arohi_303 tum python seekh rhi ho?
@arohi_3032 ай бұрын
@@Rajput_harsh_0009 ofc
@mspider0310 ай бұрын
Ma'am I want to ask that in movie question we can also use this too right? a=input("Enter the 1st movie name: ") b=input("Enter the 2nd movie name: ") c=input("Enter the 3rd movie name: ") l=[a,b,c] print(l) Rather than creating an empty list and then appending values in them
@JATAYUBABA-r2r8 ай бұрын
mene bhi same ase hi kiya hai
@Rosa-uu2sy8 ай бұрын
You can do l = [input "first movie name", input"second movie name" .....] Print(l)
@rahulpandey49757 ай бұрын
This actually helped me, I was stuck on a question from last 2 days.
@craftingwithriya.7 ай бұрын
yes you can. either ways it does the same job :)
@mylife-sl6dz7 ай бұрын
Vahi soch raha hu bencho vo interviewer bhi sar bhod dega itna locha dekkhe 😂@@craftingwithriya.
@AJosl3602 ай бұрын
summary :-----> 00:01 Lists and tuples in Python are built-in data types for storing set of values. 02:41 Lists in Python can store multiple values and can be accessed by index 06:49 Lists in Python allow mutation while strings do not. 09:01 Slicing in lists allows obtaining a sublist based on start and end indexes. 13:01 List methods in Python 15:08 The sort method in Python does not return anything, it arranges the list in place. 19:17 List insert method in Python 21:15 List method operations like pop, copy, and count 25:33 Creating and printing single value tuples in Python 27:33 Tuples in Python can be sliced and have methods like index and count. 31:12 Storing and appending values in a list in Python 33:40 Checking for Palindrome in a List 37:27 Understanding Palindromes in Python 39:25 Understanding palindromes and counting students' grades in tuples. Thankyou everybody
@nishaprajapati61033 ай бұрын
Thanks dii aapne mujhe kitna kuch sikhaya bilkul easy language ke saath
@neonblade2098 ай бұрын
m1=input("Enter 1st Movie name: ") m2=input("Enter 2nd movie name: ") m3=input("Enter 3rd movie name: ") list=[m1,m2,m3] print(list)
@surabhisbiology41494 ай бұрын
i did the same thing
@Peaceinmindchannel4 ай бұрын
i did the same thing too
@priyakushwaaha2 ай бұрын
Same❤😂
@lucky_0590Ай бұрын
Same I did 😅😅
@fahadsiddique1201Күн бұрын
Concept is crystal clear 🎉 Thank you mam 🙏🏻
@SunnyChaudhary-y4f22 күн бұрын
0:00 - Introduction 0:51 - Lists in Python 6:28 - Difference between Strings and Lists in Python 9:05 - List Slicing 11:55 - List Methods 22:59 - tuples in Python 23:38 - Difference between Tuples and Lists in Python 27:43 - Tuple Slicing 28:09 - Tuple Method 29:35 - Let's Practice Question 1 34:05 - Let's Practice Question 2 39:47 - Let's Practice Question 3
YOU Should Start From Basics Like What are Functions, classess, And Objects . Because After Certain Time It Becomes Heavy To Understand. For Beginners
@JKaushik-ix2yn3 ай бұрын
Bhai Pehale ja ke" introduction to python" Dekh ke aa
@divyanshugoyal66310 ай бұрын
38:37 another code list1= [1,2,1] copy1= list1.copy() copy1.reverse() print(copy1)
@KamaljeetDET6 ай бұрын
nice way to learn python and the way you explain is very easy to understand. Thank you .
@dhruvaldalwadi59854 ай бұрын
list1 = [1,2,3,2,1] list2 = [1,"abc","abc",1] copy_list2 = list2.copy() copy_list2.reverse() if(copy_list2==list2): print("Palindrome") else: print("non pallindrom") 39:00 and change the list numbers from 1 to 2 , you can get rest of the idea
@Aashish_Narayan3 ай бұрын
29:35 print("enter your three fevorite:-") a=str(input("movie 1")) b=str(input("movie 2")) c=str(input("movie 3")) list=[a, b, c] print("your three fevorite movies are :", list)
@ShobhitSrivastava-md6ip3 ай бұрын
32:39 ma"am can we also do this question by this method: a=input("Enter your 1st favourite movie :" ) b=input("Enter your 2nd favourite movie :" ) c=input("Enter your 3rd favourite movie :" ) list=(a,b,c) print(list)
@varickvision_12Ай бұрын
yes
@Adityasshenoy-rw4ox10 ай бұрын
Thank you madamji.. I was waiting for this chapter.. once again thank you..& also wish to bring your notice , I didn't find notes on this lecture.. Earlier lectures notes it shows at description link. Thank you ❤
@ComicCraze5410 ай бұрын
Exactly
@learnwithnagma10 ай бұрын
It's there only : drive.google.com/drive/folders/1LahwPSc6f9nkxBiRrz6LFUzkrg-Kzvov?usp=sharing
@Adityasshenoy-rw4ox10 ай бұрын
Thank you Madamji.. Found notes ❤
@Crazzyyy.068 ай бұрын
32:40 ma'am mene just movie variable bana ke usi me saare movies daalke fir usko print me daal diya and the result was the same but with less effort and line (took only 2 lines)
@shailuutalks7 ай бұрын
yes, same to you 😁
@mylife-sl6dz7 ай бұрын
@@shailuutalksdidiko Microsoft mai kisne job Diya be 😂.just kidding
@SabarnaBandyopadhyay2 ай бұрын
at 32:00 min , there is a shorter way to write the code . So first we create 3 variables , use the input function to store the name of the movies in the variables. After that we can create the list and write the name of elements within the square bracket separated by a comma like the one given : --- a = str(input("please enter the name of a movie ")) b = str(input("please enter the name of a movie ")) c = str(input("please enter the name of a movie ")) movies = [a,b,c] print(movies) ................... this is a much sorter code and we don't need to append anything .IF THERE ARE ANY PROBLEMS WITH THE CODE PLEASE INFORM
@pateljenies37852 ай бұрын
In practise que 1 , i have answerd this code : movie1 = input("Enter Fav Movie1:") movie2 = input("Enter Fav Movie2:") movie3 = input("Enter Fav Movie3:") list=[movie1,movie2,movie3] print(list) print(type(list)) Tell me is it right ?
@enfield_kiddo_1610 ай бұрын
I think without using copy method we can check palindrome i. e by using only reverse( ). list=['d', 'a', 'd'] copylist=list.reverse( ) copylist.reverse ( ) if(list == copylist): print("palindrome") else: print ("not palindrome")
@Nithishwar710 ай бұрын
copylist.list.copy() copylist.reverse()
@MahfuzurRahman-li4pr7 ай бұрын
list=["d",'a','d'] if list==list[::-1]: print('palindrom') else: print('not palindrom')
@tigertigerfoodsАй бұрын
this not working
@HafsaTahir-o1i24 күн бұрын
2nd practice question List1 = [ 1,2,3,2,1] List2 = [1,2,3,2,1] List2.reverse() If( list1 == list2): print(" list is palindrome") else : print(" list is not palindrome") Can we do with this method
34:00 Didi , we can write . Movie_1=input("movie_1 name") Movie_2=input("movie_2 name") Movie_3=input("movie_3 name") List=[Movie_1,Movie_2,Movie_3] print(List) #output _is same as
@muskanalisha16367 ай бұрын
I do same as u
@a894813 ай бұрын
31:41 Movies = [str(input("enter 1st movie: ")), str(input("enter 2nd movie: ")), str(input("enter 3rd movie: "))] print(movies) That's way was better or not for production level. I asked this question because of all inputs are stored in single variable that was good or not
@tukannath26594 ай бұрын
Thanks to my teacher that he introduced your channel to me. You are the best explainer
@johnny1910020 күн бұрын
For the very last question, I thought that we need to store the tuple into a list and then sort it. So, using Google I found out how to convert a tuple into a list and then sorted it. It was actually more interesting than the actual straight forward question.
@asthathakur5991Ай бұрын
November 2024?
@iamsatyamkarn279817 күн бұрын
Present 😮💨😮💨
@truptisuthar977015 күн бұрын
Kal exam hai 😂
@sagar14bavliya8 ай бұрын
I am mechanical Engineer... But still i am leaning this from you... Because of you..
@sreevennelab89655 ай бұрын
for the first practice question: a = (input("what is your first favorite movie? ")) b = (input("what is your second favorite movie? ")) c = (input("what is your third favorite movie? ")) list = [a, b, c] print(list) is this correct?
@NishaKumari-sd3ms5 ай бұрын
Perfect✨
@playstation076 күн бұрын
31:40 this is easy way to solve that code movi1=input() movi2=input() movi3=input() movies=[movi1,movi2,movi3] print(movies)
@muhammadfahadikram12 ай бұрын
Hi... I couldn't understand the importance of using append function at 32:33 where as we could have completed exercise without using append as below: Movie1=(input("Your Top most favourite movie?)")) Movie2=(input("Your 2nd most favourite movie?)")) Movie3=(input("Your 3rd most favourite movie?)")) List=[Movie1, Movie2, Movie3] print(List)
@babamusic853810 ай бұрын
Didi Maine ye code crame Kiya tha palindrome ka😂😂 kisi ne aisa copy ka method nahi bataya tha aj clear hua TQ a lot ❤❤❤❤❤
@free_guy_iit3 ай бұрын
😅I am pursuing a minor degree in AI at IIT Ropar, however I discovered that you educate better than our facilities.
@paramjjethwa8734Ай бұрын
BEST SERIES FOR PYTHON ON KZbin
@parthakapri428510 ай бұрын
Hi, the third lecture PDF is not available on Google Drive. So, please look into this matter.
What happens when we pass integer variables inside power function. Example: pow(a, b) Where a=int And b=int And how the pow function actually works, what is the difference if we use ** instead of pow.
@lavanyaraj40742 күн бұрын
Q.1) Favt_Mve1 = input("Enter your first favourite movie?" ) Favt_Mve2 = input("Enter your second favourite movie?" ) Favt_Mve3 = input("Enter your third favourite movie?" ) List=([Favt_Mve1+ "," +Favt_Mve2+ "," + Favt_Mve3]) print(List) print(type(List))
@yuvrajsinhsolanki0013Ай бұрын
Thank you so much madam❤
@ChandraParkesh-dc9xp6 ай бұрын
Best channel for all codes
@ChandraParkesh-dc9xp6 ай бұрын
Nice
@Vidya-R-S23 ай бұрын
Appreciate your efforts to record such long videos and these are really useful for beginners!
@ghairatbaheer199110 ай бұрын
Thank You Shradha Didi! A lot of respect from Pakistan. Your teaching method is very good. I'm enjoying your every class and I'm waiting for the upcoming classes.
@CodeBook-fc9fg8 ай бұрын
tere makima
@CodeBook-fc9fg8 ай бұрын
what the
@CodeBook-fc9fg8 ай бұрын
fo
@granteddearning10 ай бұрын
This is my answer on WAP1 movie1=input("enter your first fav movie:--") movie2=input("enter your second fav movie:--") movie3=input("enter your third fav movie:--") list=[movie1,movie2] list.append(movie3) print(list)
@sejalchourasia42986 ай бұрын
I did the same way , is it correct?
@Ayaan_khan2110 ай бұрын
str.replace() function in string replace old value with new value does that violate the rule of string being immutable.?
@Dipakshukla1587 ай бұрын
.replace() is a function and in this case internally a new string is created with the replaced value and then it is stored in the original string
@TanishkaAkulwar2 ай бұрын
we can do it in this way also the movie question #input 3 movie names from user and store in list mov1= (input("Enter the name of fav movie:")) mov2= (input("Enter the name of fav movie:")) mov3= (input("Enter the name of fav movie:")) mov_list=[mov1,mov2,mov3] print(mov_list)
mov1 = input("enter your first favourite movie : ") mov2 = input("enter your second favourite movie : ") mov3 = input("enter your third favourite movie : ") list = (mov1, mov2, mov3) print("Your Top 3 Favourite Movies Are : ", list) No Hate But Slightly better
@malaikazulfiqar34324 ай бұрын
She was trying to revise the methods she told earlier in the lacture
@devangjat31664 ай бұрын
aapne list hi create nahi kari.
@choconaamhai2 ай бұрын
we can also do this names1=input("Enter your fav 1st movie : ") names2=input("Enter your fav 2nd movie : ") names3=input("Enter your fav 3rd movie : ") movies=[ ] movies.insert(0,names1) movies.insert(1,names2) movies.insert(2,names3) print(movies) print(type(movies))
@vemulasoumyasri8305 ай бұрын
Love you shradha didi ❤️❤️❤️❤️❤️❤️
@raunakpatel23585 ай бұрын
didi 32:46 (time) pe samajh nhi aaya, ki apne alag alag variable se fir same kaise likha? aur ye chiz work kaise ki /😮
@divyamagarwal51774 ай бұрын
Mam, for the question 1 is it also ok to write a program directly like this(since you already mentioned for only 3 movies) : m1 = input("Movie 1: ") m2 = input("Movie 2: ") m3 = input("Movie 3: ") movie_list = [m1,m2,m3] print(movie_list)
@Mr_Andy_Gamer4 ай бұрын
Right bro mene bhi aisa hi code run Kiya he
@salonikasera628310 ай бұрын
Thnx didi Your way of teaching is excellent 👌👌👌
@Sarcastism108 ай бұрын
Didi practice question 2 samaj nahi aya List wala palindrome usme do list kyu liye 39:21
@govindkaushik79673 ай бұрын
# List related program # Ask the user to enter the names of their 3 favorite movies and store them into a list list_of_movies = [] list_of_movies.insert(0,input("first movie")) list_of_movies.insert(1,input("second movie")) list_of_movies.insert(2,input("third movie")) print(list_of_movies) print(type(list_of_movies))
@codingexpedition16 күн бұрын
list = [] for i in range(3): movies = input(f" Enter the name of {i} Movie: ") list.append(movies) print(list)
a=input("Enter your three favourite movies : first movies is :") b=input("enter second movie :") c=input("enter third movie :") list=[a,b,c] print(list)
@HamzaAli-vs9tb3 ай бұрын
31:38 why am i getting index error with this code: index = 0 movies = [] while index
@SANJAY-999Ай бұрын
R! Traceback (most recent call last): File "", line 6 copy_list1=list1.copy() IndentationError: unexpected indent === Code Exited With Errors ===
@zubairzakeer87726 ай бұрын
31:26 mam can we use this code a = input("please enter your 1st Favoourite movie : ") b = input("please enter your 2nd Favoourite movie : ") c = input("please enter your 3rd Favoourite movie : ") list = [a,b,c] print("you entered : ",list)
@akashnarkhede13657 ай бұрын
movies = [input("Enter 1st movie name: "), input("Enter 2nd movie name: "), input("Enter 3rd movie name: ")] print(movies) list also support taking input inside it did you check?
@jaatRao994 ай бұрын
Jada dimaag mat laga bkl😂
@saifrahman90447 ай бұрын
You are doing great Baji (didi). Love the way you are teaching. Love from Pakistan💌sada khush rahu
@MariamCali-ls3wc8 ай бұрын
a = input("enter first movie name: ") b = input("enter second movie name: ") c = input("enter third movie name: ") list = [a , b, c] print(list) mam i write code like this for question one so it is right or not?
@bhupinderkaur54608 ай бұрын
I also write in same way😂
@1198-8 ай бұрын
#another solution for the last problem: tuple = ("a", "b", "d", "c", "d") report = list(tuple) # creating a data structure called 'report', that is a list and has the same content as the tuple to be able to use the sort function report.sort(reverse = True) print(report)
@lionhare2 ай бұрын
o= input("enter ur fav movie1 ") p= input("enter ur fav movie2 ") q= input("enter ur fav movie3 ") list=[o,p,q] print(list) i did this, it worked
@udayanmarsattiwar5988Ай бұрын
us bro us
@rkdgamer248727 күн бұрын
33:43 par mene to isme se koi bhi program isa banaya hi nhi pr fir bhi mera output esa hi aa rha hai Mera program hai ye = a=str(input("Enter your first favourite movie name")) b=str(input("Enter your second favourite movie name")) c=str(input("Enter your third favourite movie name")) list=[a,b,c] print(list)
a = input("Enter Your 1st Faverite Movies Names:") b = input("Enter your 2nd Faverite Movie Name:") c = input("Enter your 3rd Faverite Movie Name:") list = [a,b,c] print("Your Faverite Movies are", list)
a = input("your fav movie ") b = input("2nd fav movie ") c = input("3rd fav movie ") i = [a , b , c] print("your fav movies are:" ,i)
@animeshpan214516 күн бұрын
It is very useful❤
@dllychoudhary758613 сағат бұрын
I have done DSA with Java but now m going Germany for MS in AI ..so do i need to switch to python now?
@FUNAI.3 ай бұрын
36:04 kya hum yha reverse function ka use krke or badme if statement lagaye toh ye work krega
@khushitiwari77049 ай бұрын
Thank uhhh 😊❤
@ShubhVerma-CSE-ENGR9 ай бұрын
Thank you dii🙏🙏 aapne bahut se concept clear krr diye thanku very much 🙏🙏⭐⭐⭐⭐⭐
@surajm_32904 ай бұрын
Mam why this code give wrong answer 41:15 question no.❓ 🔻print(list.sort())
@mohineeprithula23 күн бұрын
you're saying strings are immutable and lists are mutable. but we can easily use str.replace function and change string. so how come string is immutable?
@smilephotography832310 ай бұрын
Practice Q1. a = input('enter your first fav movie : ') b = input('enter your second fav movie : ') c = input('enter your third fav movie : ') d=[a,b,c] print(d)
@vaidehiranade30465 ай бұрын
For the First practice question about listing the movies I wrote the following code and it worked fine. Does it count as "Lists" or "Variables"?? movie1 = input("My most favourite movie is: ") movie2 = input("My second favourite movie is: ") movie3 = input("My third favourite movie is: ") listofmovies = [movie1, movie2, movie3] print(listofmovies)
@RakeshSingh-bc3pk2 ай бұрын
❤ most teacher
@Hidayahpathbd10 ай бұрын
Ye playlist ka sab se best bat hay last session of practice ❤❤❤❤
@bhavyazz206 күн бұрын
Mam your voice ❤
@MySukhada4 ай бұрын
List=[1,2,3,2,1] New = List.reverse() if List != New : print(" List contains palindrome") else: print("List is not palindromic")
@aniketkeshari41147 ай бұрын
A = [1,2,3,2,1] Print(copy(A)) Print(reverse(A))
@extendedsomeone2 ай бұрын
#favourite movies movie1=input("enter your first favourite movie:") movie2=input("enter your second favourite movie:") movie3=input("enter your third favourite movie:") print("list of your favourite movies :",[movie1, movie2, movie3])
@hassanraza805221 күн бұрын
thank you so much mam💗💗💗
@Vaibhav-or3nc4 ай бұрын
lec 3 completed 😍😍💕💕
@dailyuploads39594 ай бұрын
program to count the nos of As from the list list = ["C","D","A","A","B","B","A"] count_a = list.count("A") print(count_a)