Lecture 4 : Dictionary & Set in Python | Python Full Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ก.ย. 2024
  • This lecture was made with a lot of love❤️
    Notes : drive.google.c...
    ✨ Instagram : / shradhakhapra
    ✨ LinkedIn : / shradha-khapra

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

  • @RahulGPT-A
    @RahulGPT-A 7 หลายเดือนก่อน +465

    Attendance ✅

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

      Total kitne chapters hone Wale hai python me ?

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

      I could not understand Set() is muteable or not

    • @ImRich-xo8cm
      @ImRich-xo8cm 7 หลายเดือนก่อน

      ​@@ZainAliTheem20hello bro total kitne chapters hone Wale hai python me

    • @cham24.7
      @cham24.7 7 หลายเดือนก่อน

      ​@@ImRich-xo8cm 8 chapter ✅

    • @bhavesh-kumar-444
      @bhavesh-kumar-444 7 หลายเดือนก่อน +1

      4

  • @Siddhartha-s-bhardwaj
    @Siddhartha-s-bhardwaj 7 หลายเดือนก่อน +189

    @Shradha Khapra , Mam,
    I think at the End of all the lectures or main topics you should teach us 2-3 projects which covers whole python concepts.
    Projects helps a lot.

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

      well it is very early to build a project because it is very basics so after the course then I agree with you we need protect

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

      yes mam

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

      mam please make a video on matrix in python .

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

    00:01 Covering Dictionary and Set in Python
    02:03 Dictionaries store data in key-value pairs.
    06:09 Dictionary in Python allows for mutable and unordered key-value pairs.
    08:10 Dictionary in Python allows to access, change and assign values
    12:16 Using dictionaries to store nested data in Python.
    14:10 Working with dictionary keys and type casting
    18:07 Working with tuples and dictionaries in Python
    20:00 Understanding errors and methods in dictionary operations
    23:41 Using methods to modify dictionaries in Python
    25:36 Dictionary in Python allows for storing multiple values with unique keys.
    29:17 Working with dictionaries and sets in Python
    31:06 Sets in Python ensure unique values and can be created using a specific syntax.
    35:23 Understanding dictionaries, sets, and their properties in Python
    37:33 Understanding the clear and pop methods in Python sets.
    41:37 Understanding Dictionary and Set operations in Python
    43:21 Understanding dictionaries and key-value pairs in Python
    47:10 Understanding dictionaries and sets in Python
    49:15 Working with dictionaries and sets in Python.
    53:04 Creating sets in Python for storing pairs and values

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

      thanks

  • @ayushyadavone
    @ayushyadavone 7 หลายเดือนก่อน +70

    Hi didi, Please go ahead with this python series & cover the topics like functions & modules, advance structures like stacks, queues & linked lists, OOP in Python e.t.c & try to make a oneshot on Django. Hope so you'll help many Python learners out there 🥺🙏

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

      you go to hell she is our teacher i am muslim and islam taught to respect your teachers plz

  • @jakkavaishnavi474
    @jakkavaishnavi474 4 หลายเดือนก่อน +9

    01:04 Dictionary
    => stores data in key:value pairs (like word: meaning)
    => dict = {
    "key1" : "value"
    "key2" : "value"
    }
    => lists and tuples can also be stored in dictionary
    => key cant be lists/ dict... key can be a floating number, integer, boolean value
    => dictionary is generally mutable
    => to keep it simple we use strings to name key values
    PROPERTIES OF DICTIONARY
    => unordered... unlike in list, tuple and string as we have index there but not in dict
    => here duplicate keys aren't possible
    To access the elements of a dictionary
    print(name of dict["key name"])
    => if key name is not existing thenit showsn ana error
    => to change the vlaues
    dict["key name"] = "re-assigned value"......
    the old value shall be over-written
    => in the same way we can add a new key: value pair in python
    => to have an empty dictionary ...
    null_dict ={}
    ...initially defined then as time passes we can dd elements in the dictionary
    NESTED DICTIONARY
    => To add a sub dictionary in a dictionary
    => to extract the info from a dictionary
    print(name of dict["key1"]["subkey"])
    METHODS IN DICTIONARY
    Dot keys methods
    => myDict.keys()
    => to typecast as list we write as list( myDict.keys())
    => print(len(dict))....total number of key value pairs (or) print(len(dict.keys()))
    => myDict.values() .....gives the values
    => myDict.items()....returns all the key: value pairs as tuples
    => We can also type cast the tuple into list as
    vaiable = list(myDict.items())
    => muDict.get("key").... returns the key acc to value
    d["key'] (or) d.get("key) to get value of the key
    => [ ]- notation returns an error if the key value isn't existing but second one returns none as the key value doesn't exist
    => we follow second one as there exists less probability of error and if there is error also it doesnt affect the program written after
    => myDict.update({newDict})....inserts specified elements to the dictionary... use curly braces
    => To add multiple elements together seperate them using a comma
    => If same key is used again in the same method then the old key is overwritten here
    Tqsm Shradha mam Lots of love 😊😊

  • @uchihaclan710
    @uchihaclan710 3 หลายเดือนก่อน +27

    print("WONDERFUL SESSION")

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

      WONDERFUL SESSION

    • @Danishkhan-u1z
      @Danishkhan-u1z 10 วันที่ผ่านมา

      WONDERFUL SESSION

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

    *I don't know when this video recorded but still - Just a heads-up that in Python versions 3.7 and later, dictionaries are actually ordered! This means the order you add key-value pairs is the order you'll get when you loop through them or convert them to a list.*

  • @govindkaushik7967
    @govindkaushik7967 18 วันที่ผ่านมา +3

    # WAP to enter marks of 3 subjects from the user an store them in a dictionary .
    sub_marks={
    'hindi':input("enter your hindi marks :"),
    'english':input("enter your english marks :")
    }
    print(sub_marks)
    print(type(sub_marks))

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

    #solution
    dict = {}
    num1= int(input("enter marks for english"))
    num2= int(input("enter marks for hindi"))
    num3= int(input("enter marks for python"))
    dict.update({"english":num1})
    dict.update({"hindi":num2})
    dict.update({"python":num3})
    print(dict)

  • @nishaanjum4901
    @nishaanjum4901 5 หลายเดือนก่อน +7

    THE good thing is that we have a good range of exercises at the end of the lecture. Thank you maam!

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

    As m revising python these videos r helping me n ur way of teaching is toooo good..some concepts which i had not understood i got it by ur videos ....Thank u so much for dis wonderful videos❤❤

  • @hyperionedits17
    @hyperionedits17 3 หลายเดือนก่อน +4

    code for 2nd last excersice
    data = {}
    phy = input("Enter marks in phy")
    data.update({'phy': phy})
    chem = input("Enter marks in chem")
    data.update({'chem': chem})
    bio = input("Enter marks in bio")
    data.update({'bio': bio})
    print(data)

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

      bro jo input hai na usko int me type cast kar as input is by default string data type ka hota hai . error aa jayega

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

      @@MridulBisht-t9g thannks bro

  • @Nikhilsing5690h
    @Nikhilsing5690h 7 หลายเดือนก่อน +14

    Arey yrr mai idhar udhar ghum raha tha finally playlist mil gai yrr❤❤😂

  • @akhilbhai7276
    @akhilbhai7276 22 วันที่ผ่านมา +1

    33.22 what i understand is basically aak is pak ,pak is aak so akkpak

  • @user-ZHL75
    @user-ZHL75 7 หลายเดือนก่อน +15

    Thank You didi For your Amazing class....
    i have become your Fan in only 3 classs....
    Love from Bangladesh😍😍😍

  • @rounakverma8115
    @rounakverma8115 7 หลายเดือนก่อน +5

    This python series is very helpful for me, thanks a lot team apnacollege for providing this wonderful series…..

  • @DhritiYadav-iy4cv
    @DhritiYadav-iy4cv 3 วันที่ผ่านมา +1

    We love your classes,
    Please make video lecture on pygame development 😢
    Its our request
    Vote for lectures on pygame
    👇

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

    Didi I got a doubt
    does this program work for dictionary,if not why?
    dict={
    input("enter subjects name "):float(input("enter the makrs for specified subject ")),
    input("enter subjects name "):float(input("enter the makrs for specified subject ")),
    input("enter subjects name "):float(input("enter the makrs for specified subject ")),
    }
    print(dict)

  • @ramakrishnaboyapati9930
    @ramakrishnaboyapati9930 13 วันที่ผ่านมา

    you are good because you are not wasting the time and going fast. Exactly this is I am looking for.

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

    a = {str(9),str(9.0)}
    print(a)

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

    Attendance in college ❌ attendance in apna college 😎✅

  • @LokeshKumar-it7nu
    @LokeshKumar-it7nu หลายเดือนก่อน

    set = {(9,9.0)}
    print(type(set))
    print(set)
    it works properly without writing int and float.

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

    22:45 .............Error may occurs And also We Can Identify Where The Error Is Occured Useing It"s
    Its Not Much Difficult To Identify It..........................

  • @BUNNY-yh2wg
    @BUNNY-yh2wg 7 หลายเดือนก่อน +7

    I kindly request
    PLEASE UPLOAD THE VIDEOS DAILY💛

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

    Set ={}
    Set.add =("physics: 67 ,")
    Set.add =( "chemistry 65 ,)
    Set.add = ("art 65 ,)
    Print(set) 48:29

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

    😢😢😢
    itni khushi
    itni khushi mujay aaj tak nai hui
    kia Zabardast padhati hn ma'am
    Meri Dua ha k Allah inko Salamat rakhy

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

      ARE you from pakistan

  • @muhammadkazim9420
    @muhammadkazim9420 14 วันที่ผ่านมา

    marksValue = {"English":int(input("English: ")),"Phy":int(input("Phy: ")),"Maths":int(input("Maths: "))}
    dict_keys = list(marksValue.keys())
    dict_val = list(marksValue.values())
    result={}
    result[dict_keys[0]] = dict_val[0]
    result[dict_keys[1]] = dict_val[1]
    result[dict_keys[2]] = dict_val[2]
    print(result)

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

    Thanks Dear
    I started this course from lecture First

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

    A = dict()
    Table:"a peace of furniture ,"list of facts & figures"
    Cat :"a small animal "
    Print (dict(a))

  • @ZeeshanHaider-kp3pb
    @ZeeshanHaider-kp3pb 4 หลายเดือนก่อน +9

    mam mai na calculator banaya ap ki 2 video daik kar 3 vedio daik kar grade calculator banaya i am 13 year old and i am a poor student yeh computer mira nie hai

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

    Out class no words to explain my feelings from Pakistan ❤❤❤❤lots of love Shraddha

  • @KHURRAMSHAHZAD-ez3qr
    @KHURRAMSHAHZAD-ez3qr หลายเดือนก่อน +2

    A-o-A mam,
    key() function does not print the nested key, but value() function print the values of nested function, why?

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

    Real time usage of set in python:
    Suppose you have a list of patient names in a healthcare system. You want to remove any duplicate entries.
    patient_names = ['Alice', 'Bob', 'Alice', 'Charlie', 'Bob']
    unique_patients = set(patient_names)
    print(unique_patients)
    Output: {'Alice', 'Bob', 'Charlie'}

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

    खपड़ा जी आप बहुत अच्छा पढ़ाती है
    Thankyou

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

    Yr sb python dsa ke liye request kro.
    1 sem me to khi se bhi pdh liya.
    But wnd sem me ache se pdhna hai. Systematic way me.😊❤😊❤😊
    Idhar udhar se ek ek topic ni pdhna.❤❤🎉😊🎉😊🎉😊

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

    THANK YOU SO MUCH SHRADDHA DI.....THIS COURSE IS REALLY VERY HELPFUL.......PLEASE COVER ALL AREAS RELATED TO PYTHON...LOTS OF LOVE....🤗🤗❤❤❤❤

  • @mahendra8424
    @mahendra8424 5 วันที่ผ่านมา

    class GreatTeacher(Exception):
    def __init__(self, message="Inspiring, patient, and always ready to debug life's challenges!"):
    super().__init__(message)
    def compliment_teacher(teacher):
    try:
    if isinstance(teacher, GreatTeacher):
    raise teacher
    except GreatTeacher as gt:
    print(f"Complimenting: {gt}")
    teacher = GreatTeacher()
    compliment_teacher(teacher)

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

    Thank you so much didi for your efforts 🙌👍✨.
    Literally enjoyed via studying from you 😊.

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

    Yourr explanation is excellent mam♥️🙏.
    Hatts of to ur efforts on making useful videos like this many more

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

    sub1 = input("subject 1 : " )
    marks1= float(input("marks of sub1 : "))
    sub2 = input("subject 2 : ")
    marks2 = float(input("marks of sub 2 : "))
    sub3 = input("subject 3 : ")
    marks3 = float(input("marks of sub 3 : "))
    dict ={}
    dict.update({sub1 : marks1 })
    dict.update({sub2 : marks2})
    dict.update({sub3 : marks3})
    print(dict)

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

    set1 ={"Python", "Java", "Java script","C++", "Python"}
    set2 ={"Java", "Python", "Java", "C++","C"}
    print(len(set1.intersection(set2)))

  • @PushpitJain-u1g
    @PushpitJain-u1g 28 วันที่ผ่านมา

    subject = {}
    x =str(input("enter subject" ))
    y =int(input("marks"))
    subject.update({x:y})
    x =str(input("enter subject" ))
    y =int(input("marks"))
    subject.update({x:y})
    x =str(input("enter subject" ))
    y =int(input("marks"))
    subject.update({x:y})
    print(subject)

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

    Mam ise badh please python dsa ki video.❤❤❤🎉🎉
    TH-cam pe python me dsa ki koi video hi ni hai. ❤❤❤❤😊
    Ese me agr ap dsa in python ki video bna doge to 😊😊❤
    Aap aur bhi famous ho jaoge.
    Joki ap pehle se hi ho.
    And apse acha youtube pe to koi pdhata bhi ni.❤❤❤❤🎉🎉🎉🎉

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

    WAP to get the values of marks of 3 subject from the user and store theme in dictionary with subject name and marks. Make sure that the dictionary is delcare as empty
    ---------
    subject_and_marks = {}
    subj1_marks = int(input("Enter subj1 marks"))
    subj2_marks = int(input("Enter subj2 marks"))
    subj3_marks = int(input("Enter subj2 marks"))
    subject_and_marks["subj1"] = subj1_marks
    subject_and_marks["subj2"] = subj2_marks
    subject_and_marks["subj3"] = subj3_marks
    print(subject_and_marks)

  • @Junaid-muhammad-khan
    @Junaid-muhammad-khan 2 หลายเดือนก่อน

    marks = {}
    marks.update({str(input("Enter subject : ")) : int(input("Enter marks of subject : "))})
    marks.update({str(input("Enter subject : ")) : int(input("Enter marks of subject : "))})
    marks.update({str(input("Enter subject : ")) : int(input("Enter marks of subject : "))})
    print(marks)
    i updated the following q 3

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

    Miss as using pop attribute we can delete a random value. I didn' t find why we use this and what's the benefit of using this property?

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

    42:50 : practice set

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

    @shradhaKD
    Thankyou so much for this series. it's awesome. I'm not a IT background, I'm a physicist. I will mention you in my success also in Thesis.

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

    Too easy way to teach thanks a lot. :)

  • @StutiSharma-g7f
    @StutiSharma-g7f 2 หลายเดือนก่อน

    mam for practice ques 1,can the ans be...table = {"a piece of furniture" : "list of facts n figures"} print(table),cat = {"a small animal"},print(cat)

  • @Abhi89481
    @Abhi89481 24 วันที่ผ่านมา

    48:37
    Marks = {}
    Stu_marks = {str(input("subject: ")) : int(input(" Marks: ")),
    str(input("subject: ")) : int(input(" Marks: ")),
    str(input("subject: ")) : int(input(" Marks: "))}
    Marks.update(stu_marks)
    print(Marks)
    This way is better or not?

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

    progam to count the the nos of classes needed for each subject
    ---------------
    listOfSubjects = {"python","python","python", "java", "C++"}
    noOfClassRooms = len(listOfSubjects)
    print(noOfClassRooms)

  • @kartikjangir2116
    @kartikjangir2116 24 วันที่ผ่านมา +1

    53:37
    another possible solution without typing float and int
    x = set()
    x.add(9)
    x.add((9.0,))
    print(x)
    print(type(x))

  • @madhurjatalukdar9482
    @madhurjatalukdar9482 5 วันที่ผ่านมา

    marks={}
    marks["phy"]=input( "phy mark:")
    marks["chem"]=input("chem mark:")
    marks["math"]=input("math mark:")
    print(marks) ma'am is it correct?

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

    Hi Shradha, Thank you for the series, its really helpful, the words spelled from your voice, is effective to place in our mind, but yes we have to do lots of practice. 2ndly Can you create a vision or direction towards IT-Admin switching to DevOps platform , for them how you will take the python as a scripting language, as a DevOps Admin, not like a developer/coder. Please create a video series on this.case studies or scenario based tutorials please, so the we can clear the basic concepts which is used in day to day life in companies (playing With AWS,Docker,K8 and a lot, for Automation). Waiting for it.

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

    Mam last question me ham dict ke jagah values1= 9
    And values2=9.0
    Aur sum = (values1,values2)
    Print (sum) to (9 , 9.0) aajaega mam to ham direct ye nhi kar sakte if I have any mistake in this then reply me bcz I'm beginner in python 🙂

  • @Nanmar-te5kg
    @Nanmar-te5kg หลายเดือนก่อน +1

    setck = {(9,9.0)}
    print(setck)
    output:
    {(9, 9.0)}

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

    Respect Button ✅ here

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

    Really useful videos❤Thank you so much❤

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

    Thank you for this lecture

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

    Ek hi din mai 4 parts dekh liya isse pehle mosh ji ki video dekh li 6 hrs ki aur aaj is video just revision kar raha hu😊😅

  • @PriyankaKumari-ni7qf
    @PriyankaKumari-ni7qf หลายเดือนก่อน

    Fir the 3rd question can we use below code:
    Marks = {}
    Subject_1 = int(input(“Enter marks of English :”))
    Subject_2 = int(input(“Enter marks of Math:”))
    Subject_3 = int(“input (“Enter marks of Hindi:” ))
    Marks[“English”] = “subject_1”
    Marks[“Hindi”] = “subject_2”
    Marks [“math”] = “ subject_3”
    Print(marks)

    • @tshitijpradhan
      @tshitijpradhan 29 วันที่ผ่านมา

      Your method is correct. I've attached the corrected code below; please check it out:
      Marks = {}
      subject_1 = int(input("Enter marks of English: "))
      subject_2 = int(input("Enter marks of Math: "))
      subject_3 = int(input("Enter marks of Hindi: "))
      Marks["English"] = subject_1
      Marks["Math"] = subject_2
      Marks["Hindi"] = subject_3
      print(Marks)

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

    Ma'am,
    Last vale Question(duration-50:10) ko ham *Union* set method ka use karke bhi kar sakte hai .

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

    thank you so much di for zero cost super content ..

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

    Thank you didi for 4 lecture -first comment

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

    wow very nice session thank you🤩

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

    Respect and Love From Pakistan.

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

    Thank You So much DiDi For your Amazing class....
    I have been listening to you for a year mashallah may Allah give you more progress your teaching method is very good keep it up.
    I'M from Pakistan , I thank you enough because I have learned a lot from you Javascript HTML CSS SQL and Python , I look forward to your every lecture thank you very much

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

      Salam

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

    Hi Shradha , when we dont typecast dictionary into list and find its count of keys , it gives value as 1 , why so ??

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

    myset={9,(9.0,)} what about this solution for saving 9 as int and float? please reply is it right or wrong.

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

    What is coding

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

    You are doing great job,please make full playlist of django after this

  • @abhaygupta9822
    @abhaygupta9822 13 วันที่ผ่านมา

    Print(”Wonderful Session”)

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

    Mam I have a doubt
    After running the code why it is showing dict_keys on the console
    Whereas the dictionary name is student
    I think it should be student_keys TIME 18:48

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

    you are doing it great!!

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

    Dictionary as in Structure in cpp.

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

    Nice Session Ma'am... Very Useful.

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

    i am very inspire and action on mode

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

    Tq mam. Actually I am waiting for this video now day 🙏🙏

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

    string =" I am a bloody string check my Upper and Lower case letters"
    def case_counter(string):
    counter_dictionery = {'Upper_case_letter' :0 , 'Lower_case_letter ':0}
    for letter in string:
    if letter.isupper():
    counter_dictionery['Upper_case_letter'] +=1
    elif letter.islower():
    counter_dictionery['Lower_case_letter '] +=1
    else:
    pass

    print(f'The original string is : {string}')
    print(f'Number of upper case letters {counter_dictionery['Upper_case_letter']}')
    print(f'Number of lower case letters {counter_dictionery['Lower_case_letter ']}')
    case_counter(string)
    This code in not working when i use function but it works when i comment out the function definition and call. Why? please check all

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

    Thanks for your helpful lectures 😊

  • @HuzaifaShaikh-gf4lt
    @HuzaifaShaikh-gf4lt หลายเดือนก่อน

    very good tutorial for students thank you sister❤❤

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

    Ma'am Marks wala program asa bana sakte hai 👇👇👇👇
    dictonary={}
    subName=input("Enter the name of subject :")
    subMarks=input("Enter subject marks :")
    dictonary[subName]=subMarks
    subName=input("Enter the name of subject :")
    subMarks=input("Enter subject marks :")
    dictonary[subName]=subMarks
    subName=input("Enter the name of subject :")
    subMarks=input("Enter subject marks :")
    dictonary[subName]=subMarks
    print (dictonary)

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

    mam can u pls tell me how to access vs code...my terminal doesnt work at all and my output is "nothing" pls help me mam....pls

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

    After this Please make Python Intermediate course also & Python exercises discussion for practice

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

    Solved every question by myself 🤓

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

    Incredible knowledge base, keep it up

  • @mahajanmukundpur9162
    @mahajanmukundpur9162 5 วันที่ผ่านมา

    Ye series enough hai for complete python
    Please give answers❤❤❤❤❤ mam

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

    mam in first question of first practice set : agar hum table ko pehle or cat ko baad me access kra rhe hai to error kyu show kr rha hai ?

  • @SyedMYahya-vf9vw
    @SyedMYahya-vf9vw 7 หลายเดือนก่อน

    This lecture was made with a lot of love❤

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

    Hi Shradha , i tried using list as key name in dictionary and it worked fine, but as told in lecture video it shouldnot work .

  • @ketansapkal2118
    @ketansapkal2118 วันที่ผ่านมา

    37:49 mistake made by shradha didi she said sets are immutable.

  • @dimplechauhan9118
    @dimplechauhan9118 12 วันที่ผ่านมา +3

    why there is low like on this lecture.

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

    Thank You Maam ❤

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

    Now, understood ❤

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

    Mam React.js ka Course bhi banaye

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

    Who is going to take admission in bsc cs this year?

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

    ❤ from Kashmir

  • @Dileepkumar-he6yu
    @Dileepkumar-he6yu 7 หลายเดือนก่อน

    Mam we need a series like this for back end also

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

    print("present")