Tech Vitals
Tech Vitals
  • 70
  • 262 011
#31 - os module in Python
Learn to use os module in Python. The os module provides the ability to interact with the operating system in different ways. os module offers different functions and methods that can help us to navigate through the file systems, creating or removing files and directories, fetching the contents, changing and identifying the current directory etc.
Python tutorials: ua-cam.com/video/njhpe0jEOm0/v-deo.html&ab_channel=TechVitals
Facebook: techvitals/
Переглядів: 707

Відео

#30 - Date and Time in Python
Переглядів 2352 роки тому
Learn to work with Date and Time in Python. It is extremely important to learn about how to work with date and time when working on a any kind of projects be it for Python application or any another applications. It helps to debug and maintain the logs for the application systematically. In Python, we have a built-in module 'datetime' to work with date and time. We can simply import datetime on...
#29 - pip in Python (Python package manager)
Переглядів 6252 роки тому
Learn about pip command in Python. pip is used as the package manager in Python. Package is the collection of modules. In Python, we have built-in packages and External or third-party packages. Built-in packages are those that come along with python by default i.e. they are installed while installing python. External packages are those that we have to install explicitly using pip. Python tutori...
#28 - Python Modules
Переглядів 1212 роки тому
Learn about Python Modules. Modules in python are simply the python files that we can import in our program so that we can reuse the variables and functions/methods that are defined on those python files. We can use 'import' keyword to import modules in python file. Python has large number of built-in modules that we can use to perform complex functions within a few lines of codes. We can also ...
#27 - (OOP) - Inheritance in Python
Переглядів 5153 роки тому
Learn about Inheritance in Object Oriented Programming. Inheritance is one of the most powerful and important features of Object Oriented Programming (OOP). It is the mechanism that allows one class to inherit or acquire the properties and methods of another class. The class that inherits another class is called the Sub-class or the Child-class. On the other hand, the class being inherited is c...
#26 - (OOP) - Property Decorator in Python Class
Переглядів 3 тис.3 роки тому
Learn to use @property (property decorator) in Python Class. We can use @property to access the method inside a class as an attribute/property. When we define a method inside class with @property, the object of that class can access that method as it's property i.e. we don't need to add parenthesis to get the value returned by the method. Facebook: techvitals/
#25 - (OOP) Instance method, Class method & Static method in Python
Переглядів 9 тис.3 роки тому
Learn about instance method, class method and static method in python class. Instance method is the most common method in python class and is also called as regular method. Instance method takes object i.e. 'self' as it's first parameter. Inside an instance method, we can access class & instance variables with self attribute. Class method takes the class i.e. 'cls' as it's first parameter. We c...
#24 - (OOP) Class Variables in Python
Переглядів 3583 роки тому
Learn the difference between a class variable and instance variable. The values of instance variables can be unique or different for each instance or each class object. However, the values of class variables will be same for each class object. Class variables are shared by all instances of a class. Class variables are always defined outside of the class's methods. We can also provide a differen...
#23 - (OOP) Class & Objects in Python
Переглядів 7193 роки тому
Learn about OOP(Object Oriented Programming) in Python. OOP is a programming model based on the concept of objects. Object is anything that has certain attributes and some behaviors. In OOP, we organize the software by defining the attributes as fields and behaviors as methods of objects. For OOP, we create a class for objects. Class is the blueprint to create class objects. In the class we can...
#22 - File Handling in Python
Переглядів 2093 роки тому
Learn about File Handling in Python. We can open files, read the contents of the file, write the contents into the file and also add some new contents in the file using the file handling in Python. We use open function for the file handling which takes two parameters. The first parameter is the file name and the second parameter is the mode to determine why do we want to open that file. We use ...
#21 - Exception Handling in Python
Переглядів 2543 роки тому
Learn about Exception Handling in Python. Exception is an error that occurs while executing a code. When there is an error or bug in our code, Python will display an error message which is only understood by programmers. The clients or non-technical persons cannot understand the error message and they will have no idea what's wrong with the code. Python Exception Handling lets the programmers t...
#20 - Variable Scope in Python
Переглядів 2663 роки тому
Learn about variable scope in Python. Variable scope simply defines the scope of variables i.e. where can we access or use the variables based on their scopes or based on the location where they are defined. We have following variable scopes: L Local E Enclosing G Global B Built-in When we create a variable inside a function, that variable is called local variable of that function which is only...
#19 - *args & **kwargs in Python
Переглядів 5363 роки тому
Learn to use *args and kwargs in Python. *args and kwargs allow us to pass variable length arguments to a function. Using *args, we can pass any number of positional arguments and using kwargs, we can pass any number of key-value pairs to a function. These two parameters are really helpful when we have to create a function where we do not know how many arguments that function will have to recei...
#18 - join and split methods in python
Переглядів 2,3 тис.4 роки тому
Learn to use join and split methods in Python. join method can be used to create a string of list items by joining all the list items into a string value. We can also define a delimiter or separator to separate those list items into a string. split method is used to create a list of string items by splitting the string items. Here, the delimiter must already be on the string value itself and we...
#17 - zip( ) function in Python
Переглядів 1,9 тис.4 роки тому
Learn to use zip( ) function in Python. zip( ) function basically returns a zip object that contains the iterator of tuples or the list of tuples. The zip( ) function takes iterables as arguments and returns an iterator. For example, if two lists are passed in the zip( ) function, The function will return the iterator of tuples where the first tuple will contain the pairs of first items of both...
#16 - List Comprehension in Python
Переглядів 3164 роки тому
#16 - List Comprehension in Python
#15 - Namedtuple in Python
Переглядів 4,3 тис.4 роки тому
#15 - Namedtuple in Python
#14 - Dictionaries and it's built-in functions in Python
Переглядів 8624 роки тому
#14 - Dictionaries and it's built-in functions in Python
#13 - Sets and it's built-in functions in Python
Переглядів 2744 роки тому
#13 - Sets and it's built-in functions in Python
#12 - Tuples in Python
Переглядів 1404 роки тому
#12 - Tuples in Python
#11 - List and it's built-in functions in Python
Переглядів 2314 роки тому
#11 - List and it's built-in functions in Python
#10 - input function in Python
Переглядів 2474 роки тому
#10 - input function in Python
#9 - functions in Python
Переглядів 1424 роки тому
#9 - functions in Python
#8 - Loops in Python (while, for)
Переглядів 1864 роки тому
#8 - Loops in Python (while, for)
#7 - if statements in Python
Переглядів 2144 роки тому
#7 - if statements in Python
#6 - f-Strings in Python
Переглядів 2624 роки тому
#6 - f-Strings in Python
#5 - Strings and it's built-in functions in Python
Переглядів 2584 роки тому
#5 - Strings and it's built-in functions in Python
#4 - Integers and it's built-in functions in Python
Переглядів 2284 роки тому
#4 - Integers and it's built-in functions in Python
#3 - Variables and Data types in Python
Переглядів 2494 роки тому
#3 - Variables and Data types in Python
#2 - print function with new tricks in Python
Переглядів 7594 роки тому
#2 - print function with new tricks in Python

КОМЕНТАРІ

  • @nurhansyabilahlami3388
    @nurhansyabilahlami3388 2 місяці тому

    How to know the UUID for the sdb6??

  • @shafiulamin4128
    @shafiulamin4128 4 місяці тому

    Nice video

  • @nesrineb21
    @nesrineb21 7 місяців тому

    thank you

  • @rivaldiprince9217
    @rivaldiprince9217 8 місяців тому

    Thanks, very detail explanation

  • @harishraam6674
    @harishraam6674 9 місяців тому

    Thanks a lot Sir.

  • @affiliateofamazon
    @affiliateofamazon 10 місяців тому

    Hi after restarting the system with the command of - sudo systemctl restart -i the pc went to maintenance mode

  • @simonazike9944
    @simonazike9944 Рік тому

    This is amazing thank you for the clarification

  • @praveenreddybaddam514
    @praveenreddybaddam514 Рік тому

    Thanks you Really it's working

  • @xakaugamartinen8673
    @xakaugamartinen8673 Рік тому

    Fills like this guy is Finnish :)

  • @MuhammadTanveer-t4s
    @MuhammadTanveer-t4s Рік тому

    Keep it up, dude.

  • @gedtoon6451
    @gedtoon6451 Рік тому

    The typing.NamedTuple has much better syntax and supports typing.

  • @TIBE_Official
    @TIBE_Official Рік тому

    ua-cam.com/video/z3jAyorSv-U/v-deo.html

  • @mrsmaky7055
    @mrsmaky7055 Рік тому

    Bro I just completed watching the whole series of your!! Great Job bro!! Very well explained.

    • @TechVitals
      @TechVitals Рік тому

      Thanks for the support. Keep Learning!

  • @ChrisPinCornwall
    @ChrisPinCornwall Рік тому

    Excellent. Clearly and succinctly explained. Just one comment, an '@' is called an 'at sign' or 'commercial at', usually the former. Thank you for what you do.

    • @TechVitals
      @TechVitals Рік тому

      Thanks for sharing that Chris.

  • @thebeastmaster2710
    @thebeastmaster2710 Рік тому

    This is explain very well, thank you!

  • @programmingholic
    @programmingholic 2 роки тому

    That's Amazing Joined today, thank you

    • @TechVitals
      @TechVitals 2 роки тому

      Thank you for your support.

  • @salmanmalik5029
    @salmanmalik5029 2 роки тому

    Good explanation....

    • @TechVitals
      @TechVitals 2 роки тому

      Thank you for the support.

  • @rishiverma9892
    @rishiverma9892 2 роки тому

    Thank you so much,

    • @TechVitals
      @TechVitals 2 роки тому

      Thanks for your support.

  • @dipakmahajan2623
    @dipakmahajan2623 2 роки тому

    Pls make video on dns configured

  • @dipakmahajan2623
    @dipakmahajan2623 2 роки тому

    Nice sir pls make video on trouble shooting on real time work....

  • @wajidarif820
    @wajidarif820 2 роки тому

    Thanks very useful video

  • @KaiqueGamesPlay
    @KaiqueGamesPlay 2 роки тому

    I'm Brazilian and I'm learning python, and even with the language difficulty I managed to learn from your video what I didn't learn from the Brazilian videos! Thanks.

    • @TechVitals
      @TechVitals 2 роки тому

      This means a lot to me. Thanks for the acknowledgment.

    • @KaiqueGamesPlay
      @KaiqueGamesPlay 2 роки тому

      @@TechVitals :)

  • @narendrabn83
    @narendrabn83 2 роки тому

    I think you forgot to edit fstab file after changing the partition types.. it will give us error while booting..

  • @mohamedYousuf0
    @mohamedYousuf0 2 роки тому

    Thanks 😊

  • @mohamedYousuf0
    @mohamedYousuf0 2 роки тому

    Thanks 😊

  • @pabloarias7917
    @pabloarias7917 2 роки тому

    none of the links for centos works.

  • @Raja-zp3ks
    @Raja-zp3ks 2 роки тому

    Nice explanation 👍

  • @herbertj9387
    @herbertj9387 2 роки тому

    𝕡𝕣𝕠𝕞𝕠𝕤𝕞 😣

  • @dhananjaymalhotra7854
    @dhananjaymalhotra7854 2 роки тому

    Thanks for the video. Can you please let me know why do we write self.first_name = first_name? What is its significance?

    • @TechVitals
      @TechVitals 2 роки тому

      first_name is a parameter that holds the value sent through the object, and self.first_name is the instance variable that actually stores the value for the object. Therefore, when we create an object for a class, we send the value using the first_name parameter and then inside __init__(...), we save the value for that object using self.first_name. NOTE: self refers to the object of the class, so self.first_name means the first_name of that object for a class. Hope this helps.

  • @whatisthisllb8404
    @whatisthisllb8404 2 роки тому

    thank you

  • @ABC-qp4cd
    @ABC-qp4cd 2 роки тому

    Thanks for the video!! It really helped me understand these concepts better

  • @victorgomez335
    @victorgomez335 2 роки тому

    Nice video Thank you for the explanation!

  • @fiha4502
    @fiha4502 2 роки тому

    the server can't read css & js bootstrap file in laravel 8. Anybody can help me??

  • @Dr_Insha_Altaf
    @Dr_Insha_Altaf 2 роки тому

    hello.... how can we use mobax term from two systems simultaneously from the same account.... Please reply

  • @14chstr
    @14chstr 2 роки тому

    Hi, you access the vm in same computer. What if the mobaxterm/putty is in: 1. another computer same network 2. Another computer remotely (not in same network)?

  • @gokulajith2537
    @gokulajith2537 2 роки тому

    Chwon command does not work in terminal

  • @MilitaryTest
    @MilitaryTest 2 роки тому

    Thanks for this video!

  • @charltondsouza9140
    @charltondsouza9140 2 роки тому

    Such a short video...But the concept was so clearly explained...On the other hand there are some really long ones with no clear message... Thank you.

  • @menouhounkpatin
    @menouhounkpatin 3 роки тому

    cool video

  • @claudiohori6724
    @claudiohori6724 3 роки тому

    Good explanation... I'm newby in ssh

  • @roopagl2719
    @roopagl2719 3 роки тому

    Very well explained in a simple and clean way, thank you!

  • @bunu2996
    @bunu2996 3 роки тому

    Explained Nicely.

  • @vedantzalke9019
    @vedantzalke9019 3 роки тому

    my dude ! you saved me from failing my assessments !!! thanks a lot brother.

  • @lastcall9577
    @lastcall9577 3 роки тому

    Good bruh

  • @evadimitrova3216
    @evadimitrova3216 3 роки тому

    Thank you so much for the video! I had no idea how to to that installation and I did it! Thanks to you so much!

  • @abdulazizalmhawes1606
    @abdulazizalmhawes1606 3 роки тому

    Thank you very much, the best explanation.

  • @haroldnyirongo8273
    @haroldnyirongo8273 3 роки тому

    good stuff and helpful but the music in the background is little too loud