Lecture 3 : List & Tuple in Python | Python Full Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024

ความคิดเห็น •

  • @Srmotivative
    @Srmotivative 11 วันที่ผ่านมา +66

    Kon kon 2024 ke last month December main dekh raha hai

  • @pranav_c17
    @pranav_c17 10 หลายเดือนก่อน +188

    Best channel for all coders 🎉❤

  • @gchethan9472
    @gchethan9472 2 หลายเดือนก่อน +25

    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.

  • @bhumikakesharwani-ii4ii
    @bhumikakesharwani-ii4ii 8 หลายเดือนก่อน +42

    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

  • @paraskumarkoyarh6173
    @paraskumarkoyarh6173 4 หลายเดือนก่อน +12

    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 😊

  • @sakshamgupta-jj4go
    @sakshamgupta-jj4go 2 หลายเดือนก่อน +7

    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
      @suhaibshameem4900 หลายเดือนก่อน

      same i did, i just use input, and then list [x, y, z]
      and print list 😂

  • @vishal1980able
    @vishal1980able 9 หลายเดือนก่อน +27

    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-codes
      @its_shagufta-codes 9 หลายเดือนก่อน +2

      i did the same

    • @vishal1980able
      @vishal1980able 8 หลายเดือนก่อน

      @@its_shagufta-codes yup bro and this one is easy

    • @suneelchaurasiya6176
      @suneelchaurasiya6176 หลายเดือนก่อน

      I also did same

    • @gamer-gy3rv
      @gamer-gy3rv หลายเดือนก่อน

      Same bro😂

    • @ICEDPENGUJN
      @ICEDPENGUJN หลายเดือนก่อน

      check the type aik bar bhai

  • @mspider03
    @mspider03 10 หลายเดือนก่อน +80

    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-r2r
      @JATAYUBABA-r2r 9 หลายเดือนก่อน +5

      mene bhi same ase hi kiya hai

    • @Rosa-uu2sy
      @Rosa-uu2sy 8 หลายเดือนก่อน +7

      You can do
      l = [input "first movie name", input"second movie name" .....]
      Print(l)

    • @rahulpandey4975
      @rahulpandey4975 7 หลายเดือนก่อน +2

      This actually helped me, I was stuck on a question from last 2 days.

    • @craftingwithriya.
      @craftingwithriya. 7 หลายเดือนก่อน +1

      yes you can. either ways it does the same job :)

    • @mylife-sl6dz
      @mylife-sl6dz 7 หลายเดือนก่อน +2

      ​Vahi soch raha hu bencho vo interviewer bhi sar bhod dega itna locha dekkhe 😂​@@craftingwithriya.

  • @premsharma2595
    @premsharma2595 5 หลายเดือนก่อน +43

    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.

    • @sunehabhongle8440
      @sunehabhongle8440 5 หลายเดือนก่อน +2

      Thanks dude!!

    • @_kaustubh_06
      @_kaustubh_06 4 หลายเดือนก่อน +2

      Already description me mentioned hn.

  • @Mr_Andy_Gamer
    @Mr_Andy_Gamer 4 หลายเดือนก่อน +7

    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
      @fahadsiddique1201 2 วันที่ผ่านมา

      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))

  • @fahadsiddique1201
    @fahadsiddique1201 2 วันที่ผ่านมา

    Concept is crystal clear 🎉 Thank you mam 🙏🏻

  • @neonblade209
    @neonblade209 8 หลายเดือนก่อน +12

    m1=input("Enter 1st Movie name: ")
    m2=input("Enter 2nd movie name: ")
    m3=input("Enter 3rd movie name: ")
    list=[m1,m2,m3]
    print(list)

  • @nishaprajapati6103
    @nishaprajapati6103 3 หลายเดือนก่อน +2

    Thanks dii aapne mujhe kitna kuch sikhaya bilkul easy language ke saath

  • @D6Ell
    @D6Ell 3 หลายเดือนก่อน +127

    Anyone from September 2024

    • @Rajput_harsh_0009
      @Rajput_harsh_0009 2 หลายเดือนก่อน +3

      Yes

    • @renukaverma7640
      @renukaverma7640 2 หลายเดือนก่อน +2

      Me

    • @arohi_303
      @arohi_303 2 หลายเดือนก่อน +2

      yss

    • @Rajput_harsh_0009
      @Rajput_harsh_0009 2 หลายเดือนก่อน

      @@arohi_303 tum python seekh rhi ho?

    • @arohi_303
      @arohi_303 2 หลายเดือนก่อน +2

      @@Rajput_harsh_0009 ofc

  • @KamaljeetDET
    @KamaljeetDET 6 หลายเดือนก่อน +7

    nice way to learn python and the way you explain is very easy to understand. Thank you .

  • @Mahesh_Jaat_95
    @Mahesh_Jaat_95 10 วันที่ผ่านมา +1

    1. tup = (2, 1, 3, 1,)
    2. Print(tup)
    Aswer = (2,1,3,1

  • @mansvimagar13
    @mansvimagar13 3 หลายเดือนก่อน +6

    YOU Should Start From Basics Like What are Functions, classess, And Objects . Because After Certain Time It Becomes Heavy To Understand. For Beginners

    • @JKaushik-ix2yn
      @JKaushik-ix2yn 3 หลายเดือนก่อน +1

      Bhai Pehale ja ke" introduction to python" Dekh ke aa

  • @divyanshugoyal663
    @divyanshugoyal663 10 หลายเดือนก่อน +1

    38:37 another code
    list1= [1,2,1]
    copy1= list1.copy()
    copy1.reverse()
    print(copy1)

  • @dhruvaldalwadi5985
    @dhruvaldalwadi5985 4 หลายเดือนก่อน

    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

  • @HafsaTahir-o1i
    @HafsaTahir-o1i 25 วันที่ผ่านมา +1

    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

  • @Aashish_Narayan
    @Aashish_Narayan 4 หลายเดือนก่อน

    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)

  • @abial123hehe
    @abial123hehe 17 วันที่ผ่านมา

    41:00
    tup=("C","D","A","A","B","B","A")
    print(tup.count("A"))
    lisst=list(tup[:])
    lisst.sort()
    print(lisst)

  • @Adityasshenoy-rw4ox
    @Adityasshenoy-rw4ox 10 หลายเดือนก่อน +6

    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 ❤

    • @ComicCraze54
      @ComicCraze54 10 หลายเดือนก่อน

      Exactly

    • @learnwithnagma
      @learnwithnagma 10 หลายเดือนก่อน

      It's there only : drive.google.com/drive/folders/1LahwPSc6f9nkxBiRrz6LFUzkrg-Kzvov?usp=sharing

    • @Adityasshenoy-rw4ox
      @Adityasshenoy-rw4ox 10 หลายเดือนก่อน

      Thank you Madamji.. Found notes ❤

  • @paramjjethwa8734
    @paramjjethwa8734 หลายเดือนก่อน

    BEST SERIES FOR PYTHON ON TH-cam

  • @pateljenies3785
    @pateljenies3785 2 หลายเดือนก่อน +3

    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 ?

  • @ShobhitSrivastava-md6ip
    @ShobhitSrivastava-md6ip 3 หลายเดือนก่อน +3

    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)

  • @tukannath2659
    @tukannath2659 4 หลายเดือนก่อน

    Thanks to my teacher that he introduced your channel to me. You are the best explainer

  • @Vidya-R-S2
    @Vidya-R-S2 3 หลายเดือนก่อน

    Appreciate your efforts to record such long videos and these are really useful for beginners!

  • @sagar14bavliya
    @sagar14bavliya 8 หลายเดือนก่อน +12

    I am mechanical Engineer... But still i am leaning this from you...
    Because of you..

  • @AJosl360
    @AJosl360 2 หลายเดือนก่อน +1

    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

  • @leptoketrin
    @leptoketrin 10 หลายเดือนก่อน +245

    BCA students are here ❤❤❤

    • @Aryan_Singh_coder
      @Aryan_Singh_coder 10 หลายเดือนก่อน +10

      Bhai BCA karke bhi coding kar sakte hai
      I am in 11 th

    • @KakashiHatake-ux1jq
      @KakashiHatake-ux1jq 10 หลายเดือนก่อน +5

      No btech CSE students

    • @KakashiHatake-ux1jq
      @KakashiHatake-ux1jq 10 หลายเดือนก่อน +3

      @@Aryan_Singh_coder bhai bca mai coding syllabus me hi rheti hai

    • @KakashiHatake-ux1jq
      @KakashiHatake-ux1jq 10 หลายเดือนก่อน +4

      @@Aryan_Singh_codertry kar ki koi ache college me CSE mile bca ko backup me rakh

    • @Aryan_Singh_coder
      @Aryan_Singh_coder 10 หลายเดือนก่อน

      @@KakashiHatake-ux1jq thanks bro

  • @lavanyaraj4074
    @lavanyaraj4074 3 วันที่ผ่านมา

    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))

  • @johnny19100
    @johnny19100 21 วันที่ผ่านมา

    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.

  • @ChandraParkesh-dc9xp
    @ChandraParkesh-dc9xp 6 หลายเดือนก่อน +1

    Best channel for all codes

  • @babamusic8538
    @babamusic8538 10 หลายเดือนก่อน

    Didi Maine ye code crame Kiya tha palindrome ka😂😂 kisi ne aisa copy ka method nahi bataya tha aj clear hua TQ a lot ❤❤❤❤❤

  • @codingexpedition
    @codingexpedition 17 วันที่ผ่านมา

    list = []
    for i in range(3):
    movies = input(f" Enter the name of {i} Movie: ")
    list.append(movies)
    print(list)

  • @stayspiritual9800
    @stayspiritual9800 2 หลายเดือนก่อน +1

    VERY HELPFUL VIDEO SHRADDHA MA'AM , THANKS A LOT

    • @ashu10023
      @ashu10023 2 หลายเดือนก่อน +1

      😢😂😂😂😅😅😅

    • @ashu10023
      @ashu10023 2 หลายเดือนก่อน +1

      Hjk😅

    • @stayspiritual9800
      @stayspiritual9800 2 หลายเดือนก่อน

      @@ashu10023 you'll be a great youtuber bro

  • @choconaamhai
    @choconaamhai 2 หลายเดือนก่อน

    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))

  • @muhammadfahadikram1
    @muhammadfahadikram1 2 หลายเดือนก่อน

    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)

  • @aadi_xy_z__-df1kv
    @aadi_xy_z__-df1kv 9 หลายเดือนก่อน

    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

  • @Aditya-qh6zj
    @Aditya-qh6zj 6 หลายเดือนก่อน

    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)

  • @yuvrajsinhsolanki0013
    @yuvrajsinhsolanki0013 หลายเดือนก่อน +1

    Thank you so much madam❤

  • @vemulasoumyasri830
    @vemulasoumyasri830 5 หลายเดือนก่อน +1

    Love you shradha didi ❤️❤️❤️❤️❤️❤️

  • @a89481
    @a89481 3 หลายเดือนก่อน

    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

  • @aniketkeshari4114
    @aniketkeshari4114 7 หลายเดือนก่อน +4

    A = [1,2,3,2,1]
    Print(copy(A))
    Print(reverse(A))

  • @mirajraha
    @mirajraha หลายเดือนก่อน

    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.

  • @ghairatbaheer1991
    @ghairatbaheer1991 10 หลายเดือนก่อน +14

    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.

  • @dipakkandel2934
    @dipakkandel2934 6 หลายเดือนก่อน +3

    movie1=input("")
    movie2=input("")
    movie3=input("")
    movies=[movie1,movie2,movie3]
    print(movies)

    • @IAMYOURDADX
      @IAMYOURDADX 5 หลายเดือนก่อน

      @SyedImranShah-gi8cv print ("abc")

  • @salonikasera6283
    @salonikasera6283 10 หลายเดือนก่อน +3

    Thnx didi
    Your way of teaching is excellent 👌👌👌

  • @munirafsar1238
    @munirafsar1238 4 หลายเดือนก่อน

    f=input("first movie: ")
    s=input("second movie: ")
    t=input("third movie: ")
    lst4=[f,s,t]
    print(lst4)

  • @TanishkaAkulwar
    @TanishkaAkulwar 2 หลายเดือนก่อน

    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)

  • @ShipayetHossain
    @ShipayetHossain 6 หลายเดือนก่อน

    #practice 1
    x=(input("name 1:"))
    y=(input("name 2:"))
    z=(input("name3:"))
    list=[x,y,z]
    print("favorite 3 movies=",list)
    #2nd practice check [plaindrome]
    num=[1,2,3,6,2,1]
    num1=num.copy()
    num1.reverse()
    if(num==num1):
    print("yes")
    elif(num!=num1):
    print("no")

  • @saifrahman9044
    @saifrahman9044 7 หลายเดือนก่อน +3

    You are doing great Baji (didi). Love the way you are teaching. Love from Pakistan💌sada khush rahu

  • @alokshah-hd9xm
    @alokshah-hd9xm 3 หลายเดือนก่อน

    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)

  • @free_guy_iit
    @free_guy_iit 3 หลายเดือนก่อน +11

    😅I am pursuing a minor degree in AI at IIT Ropar, however I discovered that you educate better than our facilities.

  • @bhavyazz20
    @bhavyazz20 7 วันที่ผ่านมา +1

    Mam your voice ❤

  • @Rudratwins6904
    @Rudratwins6904 4 หลายเดือนก่อน

    Mam plz check is this correct (1st question):-
    Mov1:-"enter first movie"
    Mov2:-"enter second movie"
    Mov3:-"enter third movie"
    movies=[Mov1,Mov2,Mov3]
    Print("your 3 fav. movies are:-", movies)
    😊😊

  • @playstation07
    @playstation07 7 วันที่ผ่านมา

    31:40 this is easy way to solve that code
    movi1=input()
    movi2=input()
    movi3=input()
    movies=[movi1,movi2,movi3]
    print(movies)

  • @granteddearning
    @granteddearning 10 หลายเดือนก่อน

    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)

    • @sejalchourasia4298
      @sejalchourasia4298 6 หลายเดือนก่อน

      I did the same way , is it correct?

  • @MySukhada
    @MySukhada 4 หลายเดือนก่อน

    List=[1,2,3,2,1]
    New = List.reverse()
    if List != New :
    print(" List contains palindrome")
    else:
    print("List is not palindromic")

  • @SunnyChaudhary-y4f
    @SunnyChaudhary-y4f 23 วันที่ผ่านมา

    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

  • @sreevennelab8965
    @sreevennelab8965 5 หลายเดือนก่อน +1

    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?

  • @PritamsahaYT
    @PritamsahaYT 5 หลายเดือนก่อน

    Madam i just created a similar code of palindrome question : 👇
    list = []
    A = int(input("enter first element: "))
    B = int(input("enter second element: "))
    C = int(input("enter third element: "))
    list.append(A)
    list.append(B)
    list.append(C)
    list1 = list.copy()
    list1.reverse()
    if(list == list1):
    print("yes they are palindromic")
    else:
    print("they are not palindromic")

  • @subhadipsinha447
    @subhadipsinha447 3 หลายเดือนก่อน

    Good channel for practicing python beside html

  • @SANJAY-999
    @SANJAY-999 หลายเดือนก่อน

    R!
    Traceback (most recent call last):
    File "", line 6
    copy_list1=list1.copy()
    IndentationError: unexpected indent
    === Code Exited With Errors ===

  • @animeshpan2145
    @animeshpan2145 17 วันที่ผ่านมา

    It is very useful❤

  • @surakshaRajput-ys2dw
    @surakshaRajput-ys2dw 5 หลายเดือนก่อน +45

    Who is watching in July

  • @Naveen_Pathshala
    @Naveen_Pathshala 10 หลายเดือนก่อน

    mov1=input("enter the first moves name")
    mov2=input("enter the 2nd movies name")
    mov3=input ("enter the 3rd movies name")
    list=[mov1,mov2,mov3]
    print(list)
    (ye mam sahi hai code)

  • @Spectrum_Streams
    @Spectrum_Streams หลายเดือนก่อน

    a = input ("Value :")
    b = input ("Value :")
    c= input ("Value :")
    d= input ("Value :")
    movie=(a,b,c,d)
    print(tup[0:])

  • @FARHANSHAIK50
    @FARHANSHAIK50 12 วันที่ผ่านมา

    for very last question
    grades=("C","D","A","A","B","B","A")
    print(grades.count("B"))
    grades_list=list(grades)
    grades_list.sort()
    print(grades_list)

  • @smilephotography8323
    @smilephotography8323 10 หลายเดือนก่อน

    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)

  • @easily516
    @easily516 6 หลายเดือนก่อน +1

    best coding classes ever

  • @SabarnaBandyopadhyay
    @SabarnaBandyopadhyay 2 หลายเดือนก่อน

    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

  • @enfield_kiddo_16
    @enfield_kiddo_16 10 หลายเดือนก่อน +8

    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")

    • @Nithishwar7
      @Nithishwar7 10 หลายเดือนก่อน

      copylist.list.copy()
      copylist.reverse()

    • @MahfuzurRahman-li4pr
      @MahfuzurRahman-li4pr 7 หลายเดือนก่อน

      list=["d",'a','d']
      if list==list[::-1]:
      print('palindrom')
      else:
      print('not palindrom')

    • @tigertigerfoods
      @tigertigerfoods หลายเดือนก่อน

      this not working

  • @rinkyash13
    @rinkyash13 8 หลายเดือนก่อน +2

    Thank you! You saved my life for my upcoming exam. Btw I love your teaching style

  • @hassanraza8052
    @hassanraza8052 22 วันที่ผ่านมา

    thank you so much mam💗💗💗

  • @ZahidGulzar-n9k
    @ZahidGulzar-n9k 5 หลายเดือนก่อน +3

    Shradha Didi, append karna zaroori tha kya? maine toh aise kiya
    mov1 = input("Enter 1st movie:")
    mov2 = input("Enter 2nd movie:")
    mov3 = input("Enter 3rd movie:")
    movies = [mov1, mov2, mov3]
    print(movies)

    • @rajcantplay
      @rajcantplay 5 หลายเดือนก่อน

      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

    • @malaikazulfiqar3432
      @malaikazulfiqar3432 4 หลายเดือนก่อน

      She was trying to revise the methods she told earlier in the lacture

    • @devangjat3166
      @devangjat3166 4 หลายเดือนก่อน

      aapne list hi create nahi kari.

  • @Hasanghoir
    @Hasanghoir 3 หลายเดือนก่อน

    app sey bhi kum line code😎😎😎😎
    mov1 = input("enter 1tsd movie:")
    mov2 = input("enter 2nd movie:")
    mov3 = input("enter 3rd movie:")
    print([mov1,mov2,mov3])
    😎😎😎😎😎😎

  • @ACQUAINTANCE-UNKNOWN
    @ACQUAINTANCE-UNKNOWN 10 หลายเดือนก่อน

    THANKS DIDI ❤
    IT HELPS ME A LOT 🙏
    #GULABI DIL
    #GULABI DIL
    #GULABI DIL 🙂

  • @mubashirawan1464
    @mubashirawan1464 23 วันที่ผ่านมา

    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)

  • @its__me5566
    @its__me5566 2 หลายเดือนก่อน

    Nice lecture 👌 👏

  • @lionhare
    @lionhare 2 หลายเดือนก่อน +7

    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

  • @Vaibhav-or3nc
    @Vaibhav-or3nc 4 หลายเดือนก่อน

    lec 3 completed 😍😍💕💕

  • @afrojahmad1355
    @afrojahmad1355 หลายเดือนก่อน

    2nd mathod check palindrome
    l=["r","a","c","e","c","a","r"]
    if l[: :-1]==l:
    print('this is palindrome')
    else:
    print("no palindrome")

  • @RakeshSingh-bc3pk
    @RakeshSingh-bc3pk 2 หลายเดือนก่อน

    ❤ most teacher

  • @AyushGoGaming
    @AyushGoGaming หลายเดือนก่อน

    # To check list is palindrome or not. I tried it myself.
    list = [2, 10, 5, 10, 2]
    a = list.copy()
    a.reverse()
    print(list)
    if (list == a):
    print("List is palindrome.")
    else:
    print("List is not palindrome.")

  • @avikkundu8404
    @avikkundu8404 4 หลายเดือนก่อน

    #pallindrome list
    lst_1=[1,2,3,2,1]
    a=(lst_1[0:5])
    b=(lst_1[-5:])
    if(a==b):
    print("palindrome list")
    else:
    print("not a palindrome list")

  • @ShaheenReza-p6v
    @ShaheenReza-p6v 4 หลายเดือนก่อน

    the solution of practice question 01:
    h1= input("enter your favorite movie name:")
    h2= input("Now,enter your second favorite movie name:")
    h3= input("Great,enter your last favorite movie name:")
    list = [h1,h2,h3]
    print(list)

  • @YousafUmer-xj2lu
    @YousafUmer-xj2lu 5 หลายเดือนก่อน

    list_1 = [ 1,2,3,2,1]
    list_2 = list_1.copy()
    list_2.reverse()
    if (list_1 == list_2):
    print("The above list is palindrom")
    else:
    print("list is not palindrom")

  • @Earth.real47
    @Earth.real47 4 หลายเดือนก่อน

    lots of love from Pakistan!

  • @SwaroopSoni-vm5ys
    @SwaroopSoni-vm5ys 7 หลายเดือนก่อน +1

    Didi mere se first wala question ho gya tha 😊😊

  • @JunaidSaeed-officials
    @JunaidSaeed-officials หลายเดือนก่อน

    a = input("Please enter your 1st favorite movie name =")
    b = input("Please enter your 2st favorite movie name =")
    c = input("Please enter your 3st favorite movie name =")
    print(a,b,c)
    list = [a,b,c]
    print(list)

  • @1198-
    @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)

  • @ANIFEX17
    @ANIFEX17 6 หลายเดือนก่อน

    q=1 movie question solution(without using append)
    movie1=input("tell me your 1 favourite movies : ")
    movie2=input("tell me your 2 favourite movies : ")
    movie3=input("tell me your 3 favourite movies : ")
    mov=["movie1","movie2","movie3"]
    mov[0]=movie1
    mov[1]=movie2
    mov[2]=movie3
    a=(mov)
    print("your favorite movie is",mov)

  • @extendedsomeone
    @extendedsomeone 2 หลายเดือนก่อน

    #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])

  • @parthakapri4285
    @parthakapri4285 10 หลายเดือนก่อน +7

    Hi, the third lecture PDF is not available on Google Drive. So, please look into this matter.

  • @surajm_3290
    @surajm_3290 5 หลายเดือนก่อน

    Mam why this code give wrong answer 41:15 question no.❓
    🔻print(list.sort())

  • @FUNAI.
    @FUNAI. 3 หลายเดือนก่อน

    36:04 kya hum yha reverse function ka use krke or badme if statement lagaye toh ye work krega

  • @akashtiwari2656
    @akashtiwari2656 6 หลายเดือนก่อน +2

    I love to study and code❤

  • @iamshirishareddy
    @iamshirishareddy 4 หลายเดือนก่อน

    Can answer-1 be this:
    movie1 = input("Enter 1st movie name:")
    movie2 = input("Enter 2nd movie name:")
    movie3 = input("Enter 3rd movie name:")
    fav_movies = [movie1, movie2, movie3]
    print(fav_movies)