Set Methods in Python | Python Tutorial - Day #32

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

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

  • @khemchand494
    @khemchand494 ปีที่แล้ว +95

    The method related to sets are:-
    1) union()---->creates a new set with the unique elements from both the sets
    2)update()----->applied on a set itself and it also adds unique elements from the both the sets into one of the sets
    3) intersection()----> creates a new set with the common elements from both the sets
    4)intersection_update()------> applied on a set itself and it also contains the common elements from both the sets
    5)symmetric_difference--------> creates a new set with the elements from the both the sets that are not common in between
    6)symmetric_difference_update-------> applied on a set itself and it contains elements from the sets that are not common inj between
    7)difference------> creates a new set with the elements from a single set that are not common
    8) difference_update-----> applied on a set itself and contains elements of a set that are not common
    9)isdisjoint()---->checks if there are common elements between two sets
    10)issuperset----> checks if a set is a superset of another set
    11) issubset-----> checks is a set is subset of another set
    12)add------> to add a element into a set
    13) remove-------> to remove an elements from a set, but raises key error if the element is not present in the set
    14) discard-----> to remove an element from a set, does not raises error if the lement is not present in the set
    15) del------> not method, a keyword, to delete the complete set
    16) clear-------> to clear all the elements of a set
    17) in keyword used to check if a element is present in the set or not
    18) pop()-----> to remove a random element from the set and also we can get that element

    • @Papa_aalu
      @Papa_aalu ปีที่แล้ว +6

      Very nice

    • @user-og2lt8ou8i
      @user-og2lt8ou8i 8 หลายเดือนก่อน +6

      Thanks for the work done ✅

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

      Explained it better than him, great work

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

      very helpful

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

      He also learned from him ❤​@@vishukhajuria9573

  • @eashovon
    @eashovon ปีที่แล้ว +79

    Present from Bangladesh Brother....#Day32 Done
    In Python, a set is a collection of unique elements. Sets are used to store multiple items in a single variable. Set items are unordered, unchangeable, and do not allow duplicate values.
    Here are some common methods that you can use with sets in Python:
    add(): Adds an element to the set
    clear(): Removes all the elements from the set
    copy(): Returns a copy of the set
    difference(): Returns the difference between two or more sets as a new set
    difference_update(): Removes the items in this set that are also included in another, specified set
    discard(): Removes an element from the set if it is present
    intersection(): Returns the intersection of two sets as a new set
    intersection_update(): Removes the items in this set that are not present in other, specified sets
    isdisjoint(): Returns True if two sets have a null intersection
    issubset(): Returns True if another set contains this set
    issuperset(): Returns True if this set contains another set
    pop(): Removes and returns an arbitary set element. Raise KeyError if the set is empty
    remove(): Removes an element from the set. If the element is not present, raises a KeyError
    symmetric_difference(): Returns the symmetric difference of two sets as a new set
    symmetric_difference_update(): Inserts the symmetric differences from this set and another
    union(): Returns the union of sets in a new set
    update(): Updates the set with the union of this set and others

    • @narutokun203
      @narutokun203 ปีที่แล้ว +1

      bangladeshi musalman

    • @eashovon
      @eashovon ปีที่แล้ว +3

      @@narutokun203 YES

    • @emh1164
      @emh1164 ปีที่แล้ว +4

      Masha Allah

    • @all_shortz__
      @all_shortz__ ปีที่แล้ว

      🎉

  • @factzandcode
    @factzandcode ปีที่แล้ว +36

    some important to cover in this series as new than previous courses:
    1) recap __init__(main):
    2) turtle tutorial
    3) taste of machine learning

  • @midhattech
    @midhattech ปีที่แล้ว +41

    That's why maths is important for coding 👍😊

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

      but not complete math you can start coding without learning proper math

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

      Ghanta​@@marvelstudios9780

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

      ​@@marvelstudios9780yes, I'm in 8th grade and already learning coding,there are a few math things I don't understand but those things I will check in Google and learn

  • @dilipgurjar5181
    @dilipgurjar5181 ปีที่แล้ว +131

    Harry bhai aap Sandeep Maheshwari se mil ne jai ye na me bohot existed hu aap ki struggling story jan ne ke liye aap ki story hame inspiration degi

  • @mariamhasan3733
    @mariamhasan3733 ปีที่แล้ว +5

    Day #32 done. This video contained lots of info regarding the set methods. Great way explanation 👍

  • @alirazajafri6092
    @alirazajafri6092 ปีที่แล้ว +6

    day 32 present
    i made a function to check if a number is present in given set or not(just for fun)
    s5={2,4,6,8,10,12,14,16}
    def check_presence(n , s):
    if n in s:
    return f"{n} is here"
    else:
    return f"{n} is absent"
    print(check_presence(123,s5))
    //output//
    123 is absent

    • @rakeshwaghade9097
      @rakeshwaghade9097 ปีที่แล้ว

      you used f-Strings very cleverly..

    • @aryyann05
      @aryyann05 ปีที่แล้ว

      @@rakeshwaghade9097 but that is how we use it

  • @mowais4500
    @mowais4500 ปีที่แล้ว +4

    Thank god you posted this I was waiting for this
    Thank you for your inspiration 💐

  • @sunilkumarsb4921
    @sunilkumarsb4921 ปีที่แล้ว +4

    Present #32 day
    You makes learning as fun and uderstable

  • @mahsanbhai
    @mahsanbhai ปีที่แล้ว +2

    Your are noble teacher on plants Earth who Never ask for to buy her paid courses.

  • @thepreek2150
    @thepreek2150 ปีที่แล้ว +1

    Shukra h maths padhi thi acche se, nhi to ab waps pdhni pdhti.
    Harry Bhai ❤️❤️❤️❤️

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

    Thank you sir your this two sets video's help me for my tomorrow presentation 😊🤗

  • @bibeksamal5300
    @bibeksamal5300 ปีที่แล้ว +8

    In my class 8 set subject is there but at that time I think this is unusefull for me but now it completely worthfull 👍

    • @funfacts0070
      @funfacts0070 ปีที่แล้ว

      You should use 'useless' instead of 'unusefull'. #English is also important for coding.

    • @ISR946
      @ISR946 ปีที่แล้ว

      @@funfacts0070

    • @ISR946
      @ISR946 ปีที่แล้ว +1

      i have also studied python in class 8 but, i only learn and understand
      print("hello world")
      and i came in class 9 🤣🤣🤣🤣🤣🤣😂😂😂😂😂😂😍😍

  • @Bikash_7
    @Bikash_7 ปีที่แล้ว +1

    Best channel for learning coading

  • @satyampandey-fx8gz
    @satyampandey-fx8gz ปีที่แล้ว +5

    #day32 consistency maintain
    20:29 2/12/2022

  • @milestips
    @milestips ปีที่แล้ว +15

    All set method generate by ChatGPT AI:
    -> add(elem): Adds an element to the set. If the element is already present in the set, it has no effect.
    -> clear(): Removes all elements from the set.
    -> copy(): Returns a shallow copy of the set.
    -> difference(other_set): Returns a new set that is the difference between the set and other_set. The difference is defined as the set of elements that are present in the original set but not in other_set.
    -> difference_update(other_set): Removes all elements from the set that are also present in other_set.
    -> discard(elem): Removes an element from the set if it is present. If the element is not present, it has no effect.
    -> intersection(other_set): Returns a new set that is the intersection between the set and other_set. The intersection is defined as the set of elements that are present in both the original set and other_set.
    -> intersection_update(other_set): Removes all elements from the set that are not present in other_set.
    -> isdisjoint(other_set): Returns True if the set and other_set have no elements in common, and False otherwise.
    -> issubset(other_set): Returns True if the set is a subset of other_set, and False otherwise.
    -> issuperset(other_set): Returns True if the set is a superset of other_set, and False otherwise.
    -> pop(): Removes and returns an arbitrary element from the set. If the set is empty, it raises a KeyError exception.
    -> remove(elem): Removes an element from the set. If the element is not present, it raises a KeyError exception.
    -> symmetric_difference(other_set): Returns a new set that is the symmetric difference between the set and other_set. The symmetric difference is defined as the set of elements that are present in either the original set or other_set, but not both.
    -> symmetric_difference_update(other_set): Removes all elements from the set that are also present in other_set, and adds all elements that are present in other_set but not in the set.
    -> union(other_set): Returns a new set that is the union of the set and other_set. The union is defined as the set of elements that are present in either the original set or other_set, or both.
    -> update(other_set): Adds all elements from other_set to the set.

    • @_itz.ricky._
      @_itz.ricky._ ปีที่แล้ว

      Thnx bro for quick summary

    • @Happymind1331
      @Happymind1331 ปีที่แล้ว

      BHAI REPLIT ME DIRECT DAY 32 NAI AA RHA AHI MERE ME DAY 22 TAK KA HI ROADMAP DIKHA RHA HAI

    • @nominathkuwar4476
      @nominathkuwar4476 ปีที่แล้ว +1

      thanks bro

    • @arpankarmakar16
      @arpankarmakar16 ปีที่แล้ว +1

      Bro how is chatgpt ai working for you? It is not even opening in my PC. I've used Edge and now Firefox

    • @yuktikoli9118
      @yuktikoli9118 ปีที่แล้ว

      THANKYOU

  • @aaditya_aspirant
    @aaditya_aspirant ปีที่แล้ว +2

    In first video more than 470k views and hey took a promise and now we are here with 4.6 k views
    .shows that only 1% in life are serious and become successful

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

    Hey Harry few days I am unwell, but today I am well and I continu my challenge. *I am present bhaiya*

  • @animabehera919
    @animabehera919 ปีที่แล้ว +7

    Sir I found this course late but today I'm at day #32
    My dream is to become a software developer and I'm in class 6
    Some ppl might not believe the I'm in class 6
    But I'm still able to understand the concept
    I also created the KBC program
    Sir you are a great teacher
    Peace :)

    • @bepositive271
      @bepositive271 ปีที่แล้ว +1

      Please send me your KBC program
      and when you go higher in this course there was a project in which you needed to make a secret language when you make that please send me that also and make it from yourself without cheating.

    • @Raj_aditya111
      @Raj_aditya111 ปีที่แล้ว +1

      ​@@bepositive271 are u going to hire her??😂

    • @bepositive271
      @bepositive271 ปีที่แล้ว +1

      @@Raj_aditya111 No , becuase he is a kid i want to know what kind of intellegence he have.

    • @Raj_aditya111
      @Raj_aditya111 ปีที่แล้ว +1

      @@bepositive271At this age I used to play with wasted flat tyre of my bicycle🤣🤣
      Really now days these kids are very modern.
      Appreciable work.

    • @bepositive271
      @bepositive271 ปีที่แล้ว +1

      @@Raj_aditya111 What is your age??

  • @sathishbhuma674
    @sathishbhuma674 ปีที่แล้ว +1

    we can use set() constructor for sets..

  • @LetscookYummyrecpies
    @LetscookYummyrecpies ปีที่แล้ว +2

    name=input("Enter your name:")
    answers=[]
    print("Important: \"7 Crore for each right answer\"")
    wincount=0
    print("Who was incharge of building Taj Mahal")
    print("(a) Asad Ullah Khan\t (b) Ayaz Al choudhary
    (c) Ustad-Ahmad Lahori\t(d) Tameez khan")
    choice=(input("Enter choice"))
    if choice == "c":
    wincount=wincount+1
    print("your answer is right")
    else:
    print("Wrong")
    print(choice)
    answers.append(choice)
    print("Total wins:",wincount)
    print("How many continents are there")
    print("(a) Five \t(b) Seven
    (c) Eight\t(d) Ten")
    choice=(input("Enter your choice"))
    if choice =="b":
    wincount=wincount+1
    print("your answer is right")
    else:
    print("Wrong")
    print(choice)
    answers.append(choice)
    print("Total wins:",wincount)
    print("What is the chemical symbol for gold?")
    print("(a) Go (b) Gd (c) Au (d) Ag)")
    choice=input("Enter Your Choice")
    if choice == "d":
    wincount=wincount+1
    print("your answer is right")
    else:
    print("Wrong")
    print(choice)
    answers.append(choice)
    print("Total Wins:",wincount)
    rs=wincount*70000000
    print("You Won Total",rs)
    if wincount==3:
    print("conratulations, Your all three answers are right")
    elif wincount == 2:
    print("You are good But you need to study more")
    elif wincount== 1:
    print("you are weak")
    else:
    print("YOu need to study")
    print("Your answers are:",answers)
    print("\"THE END\"")

  • @Dunhill-brothers
    @Dunhill-brothers ปีที่แล้ว +1

    I hope this message find you in best of your health. Sir start making video on ruby on rails full course as a beginner. thanks

  • @MadhuSudhan-bj1de
    @MadhuSudhan-bj1de ปีที่แล้ว +2

    after completion of #100daysofcode python start machine learning harry bhai

  • @srfahim23
    @srfahim23 ปีที่แล้ว +1

    dekhte dekhte hum 1 month finish kor diya lol....thanks harry bhai

  • @anonymous____________________4
    @anonymous____________________4 ปีที่แล้ว

    Pranam bhrata 🙏 apka bahutt baht dhanyawad 😄🧡😇🙏🙏😇🧡

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

    even in udemy paid course, they never teach things such step by step, big thanks.

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

    very good harry
    so many fast in your carrier,god bless you bro

  • @YUDDHYASWA
    @YUDDHYASWA ปีที่แล้ว

    Dil ❤ se shukriya
    Harry Bhai

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

    In 9th std we had a chapter on sets . And I used to question the existence of this chapter . I used to think "whats the use of this in my life ??" , And today I thank my 9th std syllabus that my all concepts are clear 🙏

  • @Python-FPV
    @Python-FPV ปีที่แล้ว

    Day #32 Complete. Hope to complete this course on time.

  • @DevelopersClub-is1wm
    @DevelopersClub-is1wm 6 หลายเดือนก่อน

    Harry's work is very good .

  • @arpankarmakar16
    @arpankarmakar16 ปีที่แล้ว +1

    Sir, please bring a video on the Quick Quiz Fibonacci series program in python!

  • @elisar725
    @elisar725 ปีที่แล้ว +1

    Love you from Pakistan one the most Great Programer

  • @OmamaAlii
    @OmamaAlii ปีที่แล้ว

    apki videos mujhy bhut achi lagti hen

  • @Rajeev-kushwaha
    @Rajeev-kushwaha ปีที่แล้ว +1

    Asp. Net core ka bhi video banaiye please harry sir

  • @Countdownseries193
    @Countdownseries193 ปีที่แล้ว +1

    Thank you for python course

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

    Thank you bhaiya for such an amazing video

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

    ❤❤ love u harry bhai ❤❤❤ from odisha Jay jagganath❤

  • @RohitGupta-qn5vw
    @RohitGupta-qn5vw ปีที่แล้ว +1

    Hello Sir. Have been following your channel. Can You make a video on Tryton based server and FAST Api?

  • @zatcode
    @zatcode ปีที่แล้ว +1

    Great 👍👍

  • @ayandas9603
    @ayandas9603 ปีที่แล้ว

    i tried multiple times but i think the pop function is giveing me the first value of the set every single time. infact i do not mix different types of values, the order is being maintained.

  • @RajNamdev_19
    @RajNamdev_19 ปีที่แล้ว +1

    LOVE YOU HARRY BHAI❤

  • @uttkarshsingh200
    @uttkarshsingh200 ปีที่แล้ว +1

    Great man with brain 🧠🧠

    • @061rishipatel2
      @061rishipatel2 ปีที่แล้ว +1

      Every one has but depends on utilisation

  • @tafazzulhussain4671
    @tafazzulhussain4671 4 วันที่ผ่านมา

    Bro hum aisa bhi karsate hai
    A ={1,2,34,}
    F={44,5,4}
    Q=A +F
    Print(Q)

  • @technikalproblem6780
    @technikalproblem6780 ปีที่แล้ว

    Thank you so much sir for creating this video!

  • @vaibhavpatel5380
    @vaibhavpatel5380 ปีที่แล้ว +1

    This is important topic
    It to much very hard topic
    But your explain is very good.
    #100dayschllangeofpython

  • @Other862
    @Other862 ปีที่แล้ว +1

    Harry sir, I will be able to learn coding by subscribing to your channel. Where do you live sir? do you teach offline also
    H

  • @AshutoshSingh-cc4vp
    @AshutoshSingh-cc4vp ปีที่แล้ว +1

    YOU ARE GRAET Harry bhai

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

    Day #32 done.

  • @mdsohanurrahmanhridoy1343
    @mdsohanurrahmanhridoy1343 ปีที่แล้ว

    #Completed Day#32 Love U Vai😍

  • @2.o984
    @2.o984 4 หลายเดือนก่อน

    union unionupdat diff diffupd symmdiff
    ()---->checks if there are common elements between two sets
    10)issuperset----> checks if a set is a superset of another set
    11) issubset-----> checks is a set is subset of another set
    12)add------> to add a element into a set
    13) remove-------> to remove an elements from a set, but raises key error if the element is not present in the set
    14) discard-----> to remove an element from a set, does not raises error if the lement is not present in the set
    15) del------> not method, a keyword, to delete the complete set
    16) clear-------> to clear all the elements of a set
    17) in keyword used to check if a element is present in the set or not
    18) pop()-----> to remove a random element from the set and also we can get that element

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

      bhai repl ko fork kaise kare..

  • @PHros
    @PHros ปีที่แล้ว +1

    Going to complete this series in 4 days #challenge

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

    It's reminds me my school sets chapter in maths now i know where i can use this

  • @JoyBoy_013
    @JoyBoy_013 ปีที่แล้ว +1

    TNX harry bhai

  • @RaviKumar-yi5wj
    @RaviKumar-yi5wj ปีที่แล้ว +1

    Sir 12th ke baad kisi college se gegree leni jaruri hai kya?
    programming and skills learn Kiya. Kya company job degi Bina gegree ki
    . Sir please reply

  • @sandipsaha2005
    @sandipsaha2005 ปีที่แล้ว

    late chal raha hu but jada der nahi chalunga...present sir gg.

  • @jatinbhatt2222
    @jatinbhatt2222 ปีที่แล้ว +2

    Present sir on Day-32 ✋✋

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

    Thus , this video is proof that harry bro watched "Money heist"😏😏

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

    I have little problen in difference_update method
    Example:
    s1={1,2,3,4,5}
    s2={1,2,6,7,8}
    print(s1.difference(s2)) output: - {3,4,5}
    print(s1.difference_update(s2)) output: - None
    i want to know that why None
    Always come None please explain me anybody ???????
    thanks in advance

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

      cuz the update one updates the s1 set so it gives none. if you do it seperately and then print s1 then it will be s1

  • @bcayear1987
    @bcayear1987 ปีที่แล้ว

    WAP IN C TO CHECK A NUMBER IS MAGIC NUMBER OR NOT USING POINTER Sir ji tell it by coding

  • @tezergaming
    @tezergaming ปีที่แล้ว +1

    Harry bhaiya please make a course of ethical hacking because you is teching very easy and free

  • @yashbehere2364
    @yashbehere2364 ปีที่แล้ว +1

    First like and comment😁😁

  • @AyanKhan-pw8xk
    @AyanKhan-pw8xk ปีที่แล้ว +7

    now, this is called proper use of Money heist 😆

    • @rohanrajput_9
      @rohanrajput_9 ปีที่แล้ว

      Jab helsinki aya to mere dimag men wahi helsinki aya 😂😂

    • @muneebalam7512
      @muneebalam7512 ปีที่แล้ว

      @@rohanrajput_9 same

  • @NEERAJ-dw9bt
    @NEERAJ-dw9bt 9 หลายเดือนก่อน +1

    Present sir 🤚

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

    Finaaly I reached day 32

  • @shivamchaudhary8592
    @shivamchaudhary8592 ปีที่แล้ว +1

    #Day32 Present Sir

  • @niteshch9166
    @niteshch9166 ปีที่แล้ว

    Present Harry Sir!

  • @avipandit7512
    @avipandit7512 ปีที่แล้ว +1

    sir how you crack jee
    please tell

  • @lakhyadeepsen
    @lakhyadeepsen ปีที่แล้ว +1

    Day 32 of 100 of python challenge completed. #100DaysofCode #100dayspythonchallenge

  • @goodperson5962
    @goodperson5962 ปีที่แล้ว +1

    Sir ne toh class 11th ka pura sets chapter padha diya 😮

  • @Gamingking_720
    @Gamingking_720 ปีที่แล้ว

    Osm😍

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

    intersection and intersection_update both will work as same.

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

      no. intersection update will update the set while intersection will not update. intersection will make a new set.

  • @Radhe_radhe2929
    @Radhe_radhe2929 ปีที่แล้ว +1

    Day 32 🔥

  • @deekshithaparasu
    @deekshithaparasu ปีที่แล้ว +1

    #day32 completed

  • @pritindraparida
    @pritindraparida ปีที่แล้ว

    What is the difference between Union and Update ?
    I think we can do the same using Union what Update does.....
    Please give some reviews......

    • @amancollege9064
      @amancollege9064 ปีที่แล้ว

      Union me dono elements mix ho jaate hai dono set k aur us set me dono elements common bhi ho skte hai ... jabki update me kecal unhi element ko add Kiya Jaa skta jisko hm chahte hai

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

    Please give notes in description

  • @nirajarya6358
    @nirajarya6358 ปีที่แล้ว +1

    Hlo Harry bhai, I'm getting a problem in VS Code that is " Failed to save 'CoffeePrj.html': Insufficient permissions. Select 'Retry as Admin' to retry as administrator." Please harry Bhai i request u to that please make a video how to solve this Problem.

  • @shivanirawat4794
    @shivanirawat4794 ปีที่แล้ว +1

    A DOUBT!!
    As we know that set is unchangeable. So how can we perform add(), update(), etc functions on it?

    • @kunalji5404
      @kunalji5404 ปีที่แล้ว

      sets are unordered not unchangeabe .. : )

    • @titasdey
      @titasdey ปีที่แล้ว +1

      let me clear this out for you,
      1) Sets are mutable like lists, which means you can insert or delete items in it as well as do other manipulations.
      2) The values of sets should be immutable, hence it can't contain any mutable objects like lists, dicts or sets.

    • @Os_rwt12
      @Os_rwt12 ปีที่แล้ว +1

      Finally tumhara comment mil gya. Mai aj aaya is confusion me ...😅

  • @SumanRajak-gb1yh
    @SumanRajak-gb1yh ปีที่แล้ว +1

    Presenttttt 🔥

  • @neerajbansal3729
    @neerajbansal3729 ปีที่แล้ว

    Pls make a playlist of mojo course

  • @achmanmaheshwari5419
    @achmanmaheshwari5419 ปีที่แล้ว +1

    Hello I am working on an MYSQL integrity with python project
    I wanted that as the user gives the input of his date of birth it should calculate the user's age. I tried many times but it didn't set so please help

  • @Vegito-OP
    @Vegito-OP ปีที่แล้ว +3

    I am in 11th so I know set theory
    This class is understandable for those who read in 11th or passed
    But it can be tough for those who had not read set theory(class 11th concept)

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

    Present Sir from Pakistan!

  • @AshmitaJ-e6h
    @AshmitaJ-e6h 8 หลายเดือนก่อน

    present today also sir ji........thank you sir

  • @thatcoolkid370
    @thatcoolkid370 ปีที่แล้ว +1

    Day #32 in 100DaysOfCode. When you are not consistent but still want to cover backlogs in a single day

  • @okay9168
    @okay9168 ปีที่แล้ว

    harry bhai thank you

  • @205deepanjalithota9
    @205deepanjalithota9 ปีที่แล้ว +2

    u said sets are unchangeable. but the update method seems to change a set...pls clarify.

    • @VibesPop-editz
      @VibesPop-editz ปีที่แล้ว +2

      we r not changing any particular set value but combine one set values with another(i.e is updating )

    • @21BPH023_Vernnit
      @21BPH023_Vernnit ปีที่แล้ว +1

      @@VibesPop-editz Sets are Mutable as the set can be changed by adding and updating the items but the particular items in sets are immutable .

  • @GAMINGWITHPOLAR922
    @GAMINGWITHPOLAR922 ปีที่แล้ว +2

    We leran that the computer processing is fastest than yhe light but in python 😂😂

  • @demox_editz
    @demox_editz ปีที่แล้ว +2

    Present Sir

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

    Just want to ask at the time of union why the output came in a ordered manner because set does not give output as a ordered pair ?

  • @Manish-qt1bz
    @Manish-qt1bz ปีที่แล้ว

    Present Sir 🔥

  • @yashwankhede-c8e
    @yashwankhede-c8e ปีที่แล้ว

    hello sir can u explain merging nd joining operation of pandas

  • @gamex9553
    @gamex9553 ปีที่แล้ว +1

    day 32 completed

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

    Day 3 - Hope i will come tommorow again😊.

  • @sunilkumargupta6629
    @sunilkumargupta6629 ปีที่แล้ว +2

    Day #32

  • @AK111-o_0
    @AK111-o_0 ปีที่แล้ว

    issuperset():
    yeh set method hum kb kb use karene wale h?
    matlab kaha kaha kam aa sakta h?

  • @izazahmed5978
    @izazahmed5978 ปีที่แล้ว

    Thanks

  • @helpcollege9532
    @helpcollege9532 ปีที่แล้ว +1

    Its easy

  • @shubhamsaini4871
    @shubhamsaini4871 ปีที่แล้ว +1

    It was 200% clear because I'm in 11 th class 😄

  • @akashkarmakar9777
    @akashkarmakar9777 ปีที่แล้ว +1

    bhaiyaa mera toh .pop() use korke jo sabse chota element (int) main sirt ohi delete hoon raha hain .