The Digital Folks
The Digital Folks
  • 383
  • 930 796

วีดีโอ

Python - 077 : Call Parent class constructor from child class object #python #pythonprogrammingPython - 077 : Call Parent class constructor from child class object #python #pythonprogramming
Python - 077 : Call Parent class constructor from child class object #python #pythonprogramming
มุมมอง 50111 หลายเดือนก่อน
Classes are like creating a blueprint for an object. If we want to build a building then we must have the blueprint for that, like how many rooms will be there, its dimensions and many more, so here the actual building is an object and blueprint of the building is a class. A Class is a user-defined data-type which has data members and member functions. Data members are the data variables and me...
Python - 076 : Inheritance in python #pyhton #pythonprogramming #pythontutorialPython - 076 : Inheritance in python #pyhton #pythonprogramming #pythontutorial
Python - 076 : Inheritance in python #pyhton #pythonprogramming #pythontutorial
มุมมอง 40811 หลายเดือนก่อน
One of the core concepts in object-oriented programming (OOP) languages is inheritance. It is a mechanism that allows you to create a hierarchy of classes that share a set of properties and methods by deriving a class from another class. Inheritance is the capability of one class to derive or inherit the properties from another class. Benefits of inheritance are: Inheritance allows you to inher...
Python - 075 : Method Overloading in Python #python #pythonprogramming #pythontutorialPython - 075 : Method Overloading in Python #python #pythonprogramming #pythontutorial
Python - 075 : Method Overloading in Python #python #pythonprogramming #pythontutorial
มุมมอง 1.1K11 หลายเดือนก่อน
Method Overloading: Two or more methods have the same name but different numbers of parameters or different types of parameters, or both. These methods are called overloaded methods and this is called method overloading. Like other languages (for example, method overloading in C ) do, python does not support method overloading by default. But there are different ways to achieve method overloadi...
Python - 074 : Data Members in python #python #pythonprogramming #pythontutorialPython - 074 : Data Members in python #python #pythonprogramming #pythontutorial
Python - 074 : Data Members in python #python #pythonprogramming #pythontutorial
มุมมอง 14611 หลายเดือนก่อน
Data member − A class variable or instance variable that holds data associated with a class and its objects. Function overloading − The assignment of more than one behavior to a particular function. The operation performed varies by the types of objects or arguments involved.
Python - 073 : Class Variables in python #pyhton #pythonprogramming #pythontutorialPython - 073 : Class Variables in python #pyhton #pythonprogramming #pythontutorial
Python - 073 : Class Variables in python #pyhton #pythonprogramming #pythontutorial
มุมมอง 18211 หลายเดือนก่อน
Python » Python Object-Oriented Programming (OOP) » Python Class Variables Python Class Variables Updated on: February 7, 2022 | 7 Comments In Object-oriented programming, when we design a class, we use instance variables and class variables. In Class, attributes can be defined into two parts: Instance variables: If the value of a variable varies from object to object, then such variables are c...
Python - 072 : What is class in python ? #python #pythonprogramming #pythontutorialPython - 072 : What is class in python ? #python #pythonprogramming #pythontutorial
Python - 072 : What is class in python ? #python #pythonprogramming #pythontutorial
มุมมอง 15311 หลายเดือนก่อน
Python Classes/Objects Python is an object oriented programming language. Almost everything in Python is an object, with its properties and methods. A Class is like an object constructor, or a "blueprint" for creating objects.
Python - 071 : lambda or anonymous functions in python #python #pythonprogramming #pythontutorialPython - 071 : lambda or anonymous functions in python #python #pythonprogramming #pythontutorial
Python - 071 : lambda or anonymous functions in python #python #pythonprogramming #pythontutorial
มุมมอง 15511 หลายเดือนก่อน
A lambda function is a small anonymous function. A lambda function can take any number of arguments, but can only have one expression. Syntax lambda arguments : expression The expression is executed and the result is returned: Add 10 to argument a, and return the result: x = lambda a : a 10 print(x(5))
Python - 070 : package in python #python #pythonprogramming #pythontutorialPython - 070 : package in python #python #pythonprogramming #pythontutorial
Python - 070 : package in python #python #pythonprogramming #pythontutorial
มุมมอง 31211 หลายเดือนก่อน
What is a Python Package? Python modules may contain several classes, functions, variables, etc. whereas Python packages contain several modules. In simpler terms, Package in Python is a folder that contains various modules as files. Creating Package Let’s create a package in Python named mypckg that will contain two modules mod1 and mod2. To create this module follow the below steps: Create a ...
Python - 069 : dir() function in python #python #pythonprogramming #pythontutorialPython - 069 : dir() function in python #python #pythonprogramming #pythontutorial
Python - 069 : dir() function in python #python #pythonprogramming #pythontutorial
มุมมอง 19611 หลายเดือนก่อน
The dir() function returns all properties and methods of the specified object, without the values. This function will return all the properties and methods, even built-in properties which are default for all object.
Python - 068 : Locate a module in python #python #pythonprogramming #pythontutorialPython - 068 : Locate a module in python #python #pythonprogramming #pythontutorial
Python - 068 : Locate a module in python #python #pythonprogramming #pythontutorial
มุมมอง 9311 หลายเดือนก่อน
Locating a module means finding the directory from which the module is imported. When we import a module the Python interpreter searches for the module in the following manner: First, it searches for the module in the current directory. If the module isn’t found in the current directory, Python then searches each directory in the shell variable PYTHONPATH. The PYTHONPATH is an environment varia...
Python - 067 : import a module in python #python #pythonprogramming #pythontutorialPython - 067 : import a module in python #python #pythonprogramming #pythontutorial
Python - 067 : import a module in python #python #pythonprogramming #pythontutorial
มุมมอง 14811 หลายเดือนก่อน
Import module in Python Import in python is similar to #include header_file in C/C . Python modules can get access to code from another module by importing the file/function using import. The import statement is the most common way of invoking the import machinery, but it is not the only way. import module_name
Python - 066 : Read from a file in python #python #pythonprogramming #pythontutorialPython - 066 : Read from a file in python #python #pythonprogramming #pythontutorial
Python - 066 : Read from a file in python #python #pythonprogramming #pythontutorial
มุมมอง 30911 หลายเดือนก่อน
The read() method: This function returns the bytes read as a string. If no n is specified, it then reads the entire file. Example: f = open("myfiles.txt", "r") #('r’) opens the text files for reading only print(f.read()) #The "f.read" prints out the data in the text file in the shell when run. The readline() method: This function reads a line from a file and returns it as a string. It reads at ...
Python - 065 : Perform write on a file in python #python #pythonprogramming #pythontutorialPython - 065 : Perform write on a file in python #python #pythonprogramming #pythontutorial
Python - 065 : Perform write on a file in python #python #pythonprogramming #pythontutorial
มุมมอง 5811 หลายเดือนก่อน
The write() method: This function inserts the string into the text file on a single line. Based on the file we have created above, the below line of code will insert the string into the created text file, which is "myfile.txt.” file.write("Hello There ") The writelines() method: This function inserts multiple strings at the same time. A list of string elements is created, and each string is the...
Python - 064 : Open a file in append mode in python #python #pythonprogramming #pythontutorialPython - 064 : Open a file in append mode in python #python #pythonprogramming #pythontutorial
Python - 064 : Open a file in append mode in python #python #pythonprogramming #pythontutorial
มุมมอง 13111 หลายเดือนก่อน
Append Only ('a’): This mode allows the file to be opened for writing. If the file doesn't yet exist, a new one gets created. The handle is set at the end of the file. The newly written data will be added at the end, following the previously written data. Append and Read (‘a ’): Using this method, you can read and write in the file. If the file doesn't already exist, one gets created. The handl...
Python - 063 : Open a file in write mode in python #python #pythonprogramming #pythontutorialPython - 063 : Open a file in write mode in python #python #pythonprogramming #pythontutorial
Python - 063 : Open a file in write mode in python #python #pythonprogramming #pythontutorial
มุมมอง 4511 หลายเดือนก่อน
Write Only ('w’): This mode opens the file for writing only. The data in existing files are modified and overwritten. The start of the file is where the handle is located. If the file does not already exist in the folder, a new one gets created. Write and Read ('w ’): This mode opens the file for both reading and writing. The text is overwritten and deleted from an existing file. The start of t...

ความคิดเห็น

  • @what-a-save
    @what-a-save 6 ชั่วโมงที่ผ่านมา

    im just a high schooler but still that's too complex

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

    As per i know possible nhi hai method overloadig error show hota hai

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

    Good info but you really need to as subtitles, at times it’s hard to understand 😒

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

    Best explanation of encapsulation ever

  • @aditisingh5419
    @aditisingh5419 25 วันที่ผ่านมา

    Thank you sir

  • @hauntinglycelestial
    @hauntinglycelestial 26 วันที่ผ่านมา

    thanks a lot for the video!!!!

  • @Ben333bacc
    @Ben333bacc 27 วันที่ผ่านมา

    @andT Labs

  • @ashenisuranga2915
    @ashenisuranga2915 27 วันที่ผ่านมา

    Zener diodes be like "im very doped yo..."😅

  • @motyolap
    @motyolap 28 วันที่ผ่านมา

    I hope nobody sees this. This is very low quality content, practically just not true. C is just C everywhere.

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

    Great illustration

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

    Well explained ❤

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

    what you think about Jamming?

  • @user-lm5zs7sv5n
    @user-lm5zs7sv5n หลายเดือนก่อน

    great ! thanks~ from S. Korea.

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

    Enerzy🤣

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

    What about durability...? Which is best.....

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

      For durability both options are good. Here it will matter much that whether you are looking for more speed or cheaper product. You can go for HDD if you are looking for cheaper product and can go for SSD if you are looking for higher speed like gaming and all.

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

      For durability both options are good. Here it will matter much that whether you are looking for more speed or cheaper product. You can go for HDD if you are looking for cheaper product and can go for SSD if you are looking for higher speed like gaming and all.

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

    I love you bro.

  • @chanduKadurkapu-qj1gv
    @chanduKadurkapu-qj1gv 2 หลายเดือนก่อน

    very very clear explanation thanks a lot

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

    "void" not "Void"

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

    Could you please remove the background music, its really annoying.

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

    Thanks for your excellent explainations!!!! Very easy for approach

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

    Get ulta values😂

  • @MDIMRAN-zy9cb
    @MDIMRAN-zy9cb 2 หลายเดือนก่อน

    Very good explanation. Loved it .

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

    Nice ✨

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

    Thank for clearing concept 😮😮😮o❤

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

    Well done tqsm sir

  • @user-qm8lb4im5i
    @user-qm8lb4im5i 2 หลายเดือนก่อน

    Helpfull

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

    I use arch linux btw

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

    Thank you

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

    😊😊 nice explanation 😊😊

  • @MDIMRAN-zy9cb
    @MDIMRAN-zy9cb 3 หลายเดือนก่อน

    Good content Waiting for more such content

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

    5,6

  • @user-gw1rd7uc7s
    @user-gw1rd7uc7s 3 หลายเดือนก่อน

    C'est pas tarder

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

    exactly what i needed . thanks

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

    very good explaination , thank you for creating such a nice content . Can you please explain how we read a particular wordline?

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

    great vid

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

    bro just explained a 15 min video in seconds.

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

    Please can you help me in my search about the gps I have some problem

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

    Short and to the point, very good

  • @user-pl3ff2br2p
    @user-pl3ff2br2p 5 หลายเดือนก่อน

    Yet another garbage AI video - smh

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

      My videos are made by me

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

    sir bahuut simplyy apne tough concept ko samjha diya thank you

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

    Thanks a lot for your effort!

  • @Thekingslayer-ig5se
    @Thekingslayer-ig5se 5 หลายเดือนก่อน

    Man your content is just top notch

  • @MuhammadIlyas-gt5it
    @MuhammadIlyas-gt5it 5 หลายเดือนก่อน

    Great sir g

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

    🎉

  • @user-uq2zz9ly4v
    @user-uq2zz9ly4v 5 หลายเดือนก่อน

    If they are not connected, how data is being transferred in the first place.?

  • @user-uq2zz9ly4v
    @user-uq2zz9ly4v 5 หลายเดือนก่อน

    If they are not connected, how data is being transferred in the first place.?

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

      I would like to know this as well

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

    Thank you for your excellent explanation, but I have a question: can the table walk unit be replaced by the page division or segmentation method?

  • @PetakyahBuckley-ht5iz
    @PetakyahBuckley-ht5iz 5 หลายเดือนก่อน

    Horrible explanation

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

    Chote bhai dhanyawad

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

    Nice comparison, thanks