Object Introspection | Python Tutorials For Absolute Beginners In Hindi #70

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

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

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

    One of the best python course on TH-cam

    • @Boom0124
      @Boom0124 3 ปีที่แล้ว

      Yes

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

      one of the nahi
      only
      best python course on TH-cam

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

    Best python tutorial in you tube

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

    Koi bhi chiz sikhne ke phle hme us chiz me interest aana chahiye. Usk bad vo kuch bhi sikh skta hai..
    Pr sach kahu to harry bhai aapke vidio dekhne ke bad interest hi interest aa raha hai. Boring se coading ab interesting lgne lgi hai.
    Dil se kah raha hu bhai..

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

    #1
    import inspect
    class A:
    pass
    print(inspect.isclass(A))
    #2
    import inspect
    import math
    print(inspect.getmembers(math))

  • @ShabbirAhmed-yx4rg
    @ShabbirAhmed-yx4rg 3 ปีที่แล้ว +6

    This course is proven very fruitful and helpful for us thank you so much HARRY SIR to creat such a fruitful videos for us.....

  • @manojrudra6007
    @manojrudra6007 2 ปีที่แล้ว

    i will be a good programmer, i am a good programmer, love you harry bhai.
    i know much kuch samajh nhi aata h, but aapka video bahut acha lagta h.

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

    import inspect
    class inspector:
    def __init__(self, obj):
    self.obj = obj
    def object_inspector(self):
    for item in inspect.classify_class_attrs(inspector):
    print(item)
    the_object = inspector("CodeWithHarry")
    the_object.object_inspector()
    -- iske through kisi bhi string ka instropection kar sakte hai...yeh saare attrb. ke names display karega

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

      Dekhne me lagta hai kya hi kar diya but jab pata chala ki sirf for loop me inspect ka ek method run kiya hai tab chain ki saans mili.

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

      ye self.obj = obj kyu kara he?

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

      @@helpinghand524 Taki pure class me kabhi bhi hume kisi object ka "obj" use karna pade to hum "self.obj" likh ke use kar sakte hai. Varna sirf "obj" likh ke use nahi kar sakte.

  • @AKASHSHARMA-wy7mg
    @AKASHSHARMA-wy7mg 4 ปีที่แล้ว +65

    9 people who have disliked this video have probably spend thier money in white hat JR LOL

    • @simplifyingeducation7689
      @simplifyingeducation7689 4 ปีที่แล้ว

      'White hat JR' is just a introduction to programming not PYTHON or JAVA

    • @hasanabir8680
      @hasanabir8680 4 ปีที่แล้ว

      you are right. not only white hat jr but also other course providers. lol

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

      Please add you comment 9 to 12

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

    import inspect
    class inspector:
    def __init__(self, obj):
    self.obj = obj
    def object_inspector(self):
    for item in inspect.classify_class_attrs(inspector):
    print(item)
    the_object = inspector("CodeWithHarry")
    the_object.object_inspector()

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

    Bro,plz cover database connectivity (oracle and SQL server). Waiting for it

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

    I am excepting this challenge !!👍

  • @saharayub4448
    @saharayub4448 2 ปีที่แล้ว

    God bless you!

  • @clashingtv2527
    @clashingtv2527 2 ปีที่แล้ว

    Harry bhi ka task bohot help karta he samajne me 👍

  • @HuxaifaYT
    @HuxaifaYT 2 ปีที่แล้ว

    import inspect
    class Inspect:
    def insp(self):
    a = inspect.isclass(Inspect)
    print("Checking its class or not...")
    if a == True:
    print("It is a class")
    if a == False:
    print("Not a class")
    a = Inspect()
    print(a.insp())

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

    import inspect
    class Cars:
    def __init__(self,Cname):
    self.name=Cname
    def explain(self):
    return f"The Car name is: {self.name}"
    @property
    def inspect(self):
    a=inspect.isclass(Cars)
    if a==True:
    print("It's a class")
    else:
    print("It's not a class")
    C1=Cars("Tata")
    C1.inspect

  • @nabeelaslam6056
    @nabeelaslam6056 2 ปีที่แล้ว

    harry bhai thank you so much from pakistan.

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

    import inspect
    class Employee:
    def __init__(self,fname,lname):
    self.fname=fname
    self.lname=lname
    Shivansh=Employee("Shivansh","Varshney")
    def insp(emp):
    inspect.isclass(emp)
    while True:
    print(dir(emp))
    break
    emp=input()
    insp(emp)
    ye lijiye sir aapka answer

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

      while loop faltu me laga diya. use nikal code sahi chalega

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

      Object Shivansh name ka bnaya h fir emp input kyu le rho ho .
      Kehna kya chahte ho bhai 😂😂😂

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

    import inspect
    class Phones:
    def __init__(self, a):
    self.name = "iphone"
    self.ram = 4
    self.battery = 4000
    def printdetails(self):
    return f"Name is {self.name}, Ram is {self.ram} and Battery is {self.battery}."
    jk = Phones()
    print(inspect.getmembers(jk))

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

    import inspect
    class Egadgets:
    def __init__(self, aname, aprice):
    self.name = aname
    self.price = aprice
    def explain(self):
    return f"Name of the product is {self.name} and it's price is {self.price}"
    class Earphones(Egadgets):
    def __init__(self, aname, aprice, model):
    super().__init__(self, aname)
    self.model = model
    def explain(self):
    return f"Name of the product is {self.name}, it's price is {self.price} and model is {self.model}"
    Mobile1 = Egadgets("Huawei",7000)
    # Ear1 = Earphones("Boat",700)
    a = inspect.getmembers(Mobile1, inspect.ismethod)
    print("Methods used are = ", a)
    b = inspect.getmembers(Mobile1, inspect.isclass)
    print("Classes are = ", b)
    c = inspect.getmembers(Mobile1, inspect.isbuiltin)
    print("Builtins are = ", c)

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

    skillf the most mysterious thing in my coding journey. bhai iske bare me kabhi batana

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

    Timestamp 5:36 i accepted this challenge sir .

  • @anantluthra
    @anantluthra 3 ปีที่แล้ว

    I am excepting this challenge...

  • @rakeshtomar6391
    @rakeshtomar6391 4 ปีที่แล้ว

    Big Help Thank You

  • @benhaword
    @benhaword 2 ปีที่แล้ว

    i am accepct this chanllage

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

    Sir kotlin pr banaoge video ap baad m ya ni

  • @suhashisumanshukla2779
    @suhashisumanshukla2779 3 ปีที่แล้ว

    I am excepting this challenge!

    • @suhashisumanshukla2779
      @suhashisumanshukla2779 3 ปีที่แล้ว

      import inspect
      class Employee:
      no_of_leaves = 8
      def __init__(self,aname,asalary, arole):
      self.name= aname
      self.salary= asalary
      self.role= arole
      def __str__(self):
      return str(inspect.getmembers(self))
      Suhashi = Employee("Suhashi",10000, "Developer")
      print(Suhashi)

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

    class A:
    Job_time="9 to 5"
    def __init__(self,name,working_days):
    self.name=name
    self.working_days=working_days
    def introducing(self):
    return (f"The name of the employee is:{self.name} he/she has to work for "
    f"{self.working_days} no. of days")

    @classmethod
    def greet(cls,time):
    if time.upper()=="MORNING":
    return f"Good {time}"
    elif time.upper()=="AFTERNOON":
    return f"Good {time}"
    else:
    return f"Good {time}"
    tanish=A("Tanish",100)
    print(tanish.greet("Morning"))
    import inspect as i
    print(i.ismethod(tanish))
    print(i.getcomments(tanish))
    print(i.getsource(A))
    for key,data in i.getmembers(tanish):
    if key.startswith("__"):
    print(data)

  • @thefitonce6003
    @thefitonce6003 2 ปีที่แล้ว

    acepting this challange

  • @sailendrachettri8521
    @sailendrachettri8521 4 ปีที่แล้ว

    Thank You Harry Bhai..!!

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

    Task of inspect:
    def Inspect_somethingect(something, ch):
    import inspect
    if (ch==1):
    # check whether the arguement is a class or not
    if (inspect.isclass(something)):
    return f"'{something}' is a class."

    # check whether the arguement is a module or not
    elif (inspect.ismodule(something)):
    return f"'{something}' is a module."
    # check whether the arguement is a function or not
    elif (inspect.isfunction(something)):
    return f"'{something} is a function."

    # check whether the arguement is a method of a class or not
    elif (inspect.ismethod(something)):
    return f"'{something}' is a method."

    if (ch==2):
    # returns the class hierarchy
    return f"Hierarchy of {something} object is
    {inspect.getmro(something)}"

    if (ch==3):
    # returns all the methods, attributes with values of the class.
    return inspect.getmembers(something)

    if (ch==4):
    # returns all the parameters passed to a given function
    return inspect.signature(something)

    if (ch==5):
    # returns the source code of given class, module, method, function
    return inspect.getsource(something)

    if (ch==6):
    # returns the module name of the method or function passed in it.
    return inspect.getmodule(something)

    if (ch==7):
    # returns the docstring of the method.
    return inspect.getdoc(something)

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

    sir Django kab se start krege deeply wala or machine learning k practical plz implement kr ke dikhaiye ml ka Al ka

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

    Is id same as address in C or Cpp

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

    Bhai Ya OOp Bohot Sahi Chheze Hai!.. Pehle Samajh Nahi aa Raha Thga.. Ab Maza aaa raha hai!

  • @fakemorningstar70
    @fakemorningstar70 2 ปีที่แล้ว

    import inspect
    class Asif:
    def __init__(self,name,fame):
    self.name=name
    self.fame=fame
    def pri(self):
    return f" name is {self.name}, fame is {self.fame}"
    def pri2(self):
    print("these items are members")
    for item in inspect.getmembers(asif):
    print(item)
    asif=Asif('asif','programmer')
    print(asif.pri2())

  • @coding_9322
    @coding_9322 3 ปีที่แล้ว

    class A:
    ram = "name"
    shyam = "middlename"
    mehta = "surname"
    def __init__(self, fname, lname):
    self.fname = fname
    self.lname = lname
    object1 = A("Raju", "Kumar")
    object2 = A("Maju", "Kumar")
    import inspect
    def func1(cls):
    if inspect.isclass(cls) == True:
    attributes = [attr for attr in dir(cls)
    if not attr.startswith('__')]
    return attributes
    print(func1(A))

  • @antu_saha
    @antu_saha 3 ปีที่แล้ว

    i'm acpecting this challange

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

    Challenge accepted-
    import inspect
    def sum(a,b):
    return a+b
    print(inspect.isfunction(sum))

  • @rajatkumarpanigrahi7082
    @rajatkumarpanigrahi7082 3 ปีที่แล้ว

    I accept the challenge🤝❤

  • @iamprashantjain
    @iamprashantjain 2 ปีที่แล้ว

    How different Object INtrospection is from __repr__ & __str__ method?

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

    Best tutorial

  • @sourikparui1672
    @sourikparui1672 2 ปีที่แล้ว

    sir please creat a playlist only html base

  • @navneet5212
    @navneet5212 4 ปีที่แล้ว

    Dict function se bhi m ye kr skta hu
    Like object.__dict__
    Toh dir ko kyu usme kre isme hum

  • @Gandhiboy
    @Gandhiboy 4 ปีที่แล้ว

    Thank you 😊

  • @sabkaverse
    @sabkaverse 2 ปีที่แล้ว

    Accepted

  • @universalgroupofeducationm3483
    @universalgroupofeducationm3483 3 ปีที่แล้ว

    # Practice:::
    from abc import ABC , abstractmethod
    class FatherOfA(ABC):
    @abstractmethod
    def SumOfConstructorValues(self):
    return None # Return value can be modified.....
    @abstractmethod
    def Multiplication(self):
    return None # Return value can be modified....
    class A(FatherOfA):
    def __init__(self,x,y):
    self.x = x
    self.y = y
    def Returner(self):
    return "The value of [x] is %f and [y] is %f"%(self.x,self.y)
    # Abstract Class Method....
    def SumOfConstructorValues(self):
    return f"The sum of {self.x} and {self.y} = {self.x + self.y}"
    def Multiplication(self):
    return f"The multiplication of {self.x} and {self.y} = {self.x * self.y}"
    def __mul__(self, other):
    '''These type of methods are also called Dunder Method'''
    a = self.x * other.y
    b = self.x * other.y
    Multiply = A(a,b)
    return Multiply
    a = A(8,4)
    b = A(6,8)
    ab = a*b
    # print(f"Multiplication of {a.x} and {b.x} = ",ab.x)
    def RequiredFunc():
    print("Hello World")
    # Self Exploring................................................................................................................................................................................................
    import inspect # Importing the module..
    print("Inspect Module::")
    print("===================================================================================================================================================================")
    print("Statement 1:")
    IsClass = inspect.isclass(A)
    print("Exameple :",end = " ")
    print(f"The method isclass() returns true when the given argument in this function is a class
    Argument >> [{A}:[Function Returns >>{IsClass}]")
    print("==================================================================================================================================================================")
    print("Statement 2:")
    IsFunction = inspect.isfunction(RequiredFunc)
    print("Example :",end = " ")
    print(f"The method isfunction() returns true when the given argument in the function is type of function
    Argument >> {RequiredFunc} Returns >> {IsFunction}")
    print("===================================================================================================================================================================")
    print("Statement 3:")
    GetMembers = inspect.getmembers(A)
    print("Example :",end = " ")
    print(f"The method getmembers() returns all the attributes including [Functions , variables , objects] of the class which is passed as the argument in this functions...
    Argument >> {A} Returns >> {list(GetMembers)}")
    print("====================================================================================================================================================================")
    print("Statement 4:")
    import pygame as py# Importing a module for test....
    IsModule = inspect.ismodule(py)# Pass the module name....
    print("Example :",end = " ")
    print(f"The method ismodule() returns true when the when the given argument in this function is a module in python's library otherwise it will return false....
    Argument >> {py} returns >> {IsModule}")
    print("=====================================================================================================================================================================")
    print("Documentation End.....")

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

    Challenge Accepted bhai
    Now i will defently do it
    mujhe bhi ek dil deto n bhai plz
    and I will submit in few minutes sir

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

    😊

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

    I have accepted this challenge

  • @ac695
    @ac695 3 ปีที่แล้ว

    Bhai baar baar run karne par ID change kyu ho rahi hain?

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

    I am accepting the challenge!

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

      Answer for your question with this function of inspect module you can figure out the source of the object.

  • @ShivamSingh-kn3gz
    @ShivamSingh-kn3gz 4 ปีที่แล้ว

    I accept this challenge Harry Bhaiya

  • @bman0922
    @bman0922 2 ปีที่แล้ว

    👍👍👍👍💯💯💯

  • @vaibhavdabral4511
    @vaibhavdabral4511 3 ปีที่แล้ว

    challenge accepted bhaiya !!!!!!!

  • @vedantmule6237
    @vedantmule6237 3 ปีที่แล้ว

    I'm accepting the challenge...sir

  • @chetankhichi7038
    @chetankhichi7038 4 ปีที่แล้ว

    bhai kivy sikhao yrr ap gui development ke liye plz

  • @mahatabahmed3553
    @mahatabahmed3553 4 ปีที่แล้ว

    Accepting this challenge

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

    Gui development pe banaoge aab aap

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

      Bahut hi jaldi aapko Python GUI pe videos dekhne ko milenge!

    • @abhinavchoudhary6849
      @abhinavchoudhary6849 3 ปีที่แล้ว

      @@CodeWithHarry Aa gaye videos bhai

  • @nikki3682
    @nikki3682 3 ปีที่แล้ว

    Love it

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

    Sir please Kotlin ka course banaye

  • @krishivsharmaarts8716
    @krishivsharmaarts8716 3 ปีที่แล้ว

    I am excepting this chalenge

  • @omsaimohapatra8171
    @omsaimohapatra8171 3 ปีที่แล้ว

    I accept the challenge harry bhai

    • @Elderny
      @Elderny 3 ปีที่แล้ว

      🤣

  • @codewithrohit2927
    @codewithrohit2927 2 ปีที่แล้ว

    #challenge accepted
    import inspect
    class Employee:
    def __init__(self,fname,lname):
    self.fname=fname
    self.lname=lname
    Shivansh=Employee("Shivansh","Varshney")
    def insp(emp):
    inspect.isclass(emp)
    while True:
    print(dir(emp))
    break
    emp=input('write your word here :
    ')
    insp(emp)
    print('you can use this function')

  • @reenamaurya6832
    @reenamaurya6832 3 ปีที่แล้ว

    I am accepting the challenge 😌

  • @tarunkumar3176
    @tarunkumar3176 3 ปีที่แล้ว

    sir please also make a tutorials on hacking

  • @HassanAli-pm2gd
    @HassanAli-pm2gd 2 ปีที่แล้ว +3

    Challenge accepted
    import inspect
    class Inspect:
    def insp(self):
    a = inspect.isclass(Inspect)
    return a
    b = inspect.ismodule(inspect)
    return b
    a = Inspect()
    print(a.insp())
    b = Inspect()
    print(b.insp())

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

    I am excepting this challenge

    • @gloryjaw4327
      @gloryjaw4327 4 ปีที่แล้ว

      I am trying this challange😜

  • @prathameshsolanke1661
    @prathameshsolanke1661 3 ปีที่แล้ว

    I am accepting the challenge 😁

  • @abduksam
    @abduksam 4 ปีที่แล้ว

    challenge accepted
    easy he pr time yaar kal se paper bhi start ho rhe hein

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

    I accepted the challenge

  • @Shonashoni1
    @Shonashoni1 4 ปีที่แล้ว

    Hey Harry!! I am accepting this challenge.

  • @zenyoko
    @zenyoko 2 ปีที่แล้ว

    #day70

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

    Oka

  • @milankanjariya4041
    @milankanjariya4041 4 ปีที่แล้ว

    I am eccepting this challange.

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

    🔥🔥🔥

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

    Dear sir, I am accepting this challenge.

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

    I accepted your challenge

  • @manjuvishnoi7632
    @manjuvishnoi7632 3 ปีที่แล้ว

    I am excepting this challenge (≧▽≦)

  • @arif_alam7877
    @arif_alam7877 3 ปีที่แล้ว

    I am expecting this chalange

  • @thexurde4973
    @thexurde4973 4 ปีที่แล้ว

    I accept the challenge

  • @epicapitgaming7665
    @epicapitgaming7665 4 ปีที่แล้ว

    i accept the challenge

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

    Challenge exepted

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

    i am accepting this challanmge

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

    I accept this challange

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

    I'm accepting this challenge !!!

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

    Harris Bhai I am accepting your challenge!!!

  • @ShubhamGupta-qk9uq
    @ShubhamGupta-qk9uq 5 ปีที่แล้ว +1

    accepted

  • @avishekYT
    @avishekYT 3 ปีที่แล้ว

    Challenge excepted

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

    I am Accepting your Challange

  • @abdulqadar771
    @abdulqadar771 3 ปีที่แล้ว

    I accept this challenge

    • @abdulqadar771
      @abdulqadar771 3 ปีที่แล้ว

      import inspect
      print(inspect.ismodule(SkillF))
      print(inspect.isclass(SkillF))
      print((inspect.isbuiltin(SkillF)))

  • @ad_uke
    @ad_uke 4 ปีที่แล้ว

    👍👍👍👍

  • @jackdarcy2264
    @jackdarcy2264 4 ปีที่แล้ว

    CHALLANGE ACCEPTED!!!!!!

  • @jaisinha1378
    @jaisinha1378 3 ปีที่แล้ว

    challenge accepted !!

  • @dakkugamer7769
    @dakkugamer7769 4 ปีที่แล้ว

    Accepting challenge

  • @mohammedsabaajom248
    @mohammedsabaajom248 2 ปีที่แล้ว

    import inspect
    class Human:
    def __init__(self, fname, lname):
    self.fname = fname
    self.lname = lname
    def explain(self):
    return f"this is {self.fname} {self.lname}"
    @property
    def inspection(self):
    a = inspect.isclass(human)
    print ("Identify that it's a class or not: ")
    if a == True:
    print("It's a class.")
    else:
    print("It's not a class !!")
    human = Human("Haris","Khan")
    human.inspection

  • @dakshsingh6033
    @dakshsingh6033 3 ปีที่แล้ว

    bro thoda acche se samjha do
    pls explain with more examples
    this is just a request
    -king of coding

  • @codewithguruji2201
    @codewithguruji2201 4 ปีที่แล้ว

    I'm accepting this chalega

  • @Swarnimshow
    @Swarnimshow 2 ปีที่แล้ว

    i have accepted this channel ajao bheskipooochhhh

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

    Sir please help Karo
    Meri python file exe me transfer nahi ho Raha he

  • @debasishsahoo3446
    @debasishsahoo3446 4 ปีที่แล้ว

    Accept the challenge

  • @rajharde8563
    @rajharde8563 3 ปีที่แล้ว

    I'm Accepting this Challenge