Tech Vitals
Tech Vitals
  • Видео 70
  • Просмотров 258 500
#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: ruclips.net/video/njhpe0jEOm0/видео.html&ab_channel=TechVitals
Facebook: techvitals/
Просмотров: 669

Видео

#30 - Date and Time in Python
Просмотров 2332 года назад
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)
Просмотров 6162 года назад
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
Просмотров 1182 года назад
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
Просмотров 5072 года назад
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
Просмотров 2,9 тыс.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
Просмотров 3563 года назад
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
Просмотров 7133 года назад
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
Просмотров 2533 года назад
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
Просмотров 2633 года назад
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
Просмотров 5273 года назад
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 года назад
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,8 тыс.3 года назад
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
Просмотров 3093 года назад
#16 - List Comprehension in Python
#15 - Namedtuple in Python
Просмотров 4,2 тыс.3 года назад
#15 - Namedtuple in Python
#14 - Dictionaries and it's built-in functions in Python
Просмотров 8393 года назад
#14 - Dictionaries and it's built-in functions in Python
#13 - Sets and it's built-in functions in Python
Просмотров 2693 года назад
#13 - Sets and it's built-in functions in Python
#12 - Tuples in Python
Просмотров 1393 года назад
#12 - Tuples in Python
#11 - List and it's built-in functions in Python
Просмотров 2293 года назад
#11 - List and it's built-in functions in Python
#10 - input function in Python
Просмотров 2473 года назад
#10 - input function in Python
#9 - functions in Python
Просмотров 1423 года назад
#9 - functions in Python
#8 - Loops in Python (while, for)
Просмотров 1863 года назад
#8 - Loops in Python (while, for)
#7 - if statements in Python
Просмотров 2144 года назад
#7 - if statements in Python
#6 - f-Strings in Python
Просмотров 2614 года назад
#6 - f-Strings in Python
#5 - Strings and it's built-in functions in Python
Просмотров 2554 года назад
#5 - Strings and it's built-in functions in Python
#4 - Integers and it's built-in functions in Python
Просмотров 2234 года назад
#4 - Integers and it's built-in functions in Python
#3 - Variables and Data types in Python
Просмотров 2484 года назад
#3 - Variables and Data types in Python
#2 - print function with new tricks in Python
Просмотров 7544 года назад
#2 - print function with new tricks in Python

Комментарии

  • @nurhansyabilahlami3388
    @nurhansyabilahlami3388 Месяц назад

    How to know the UUID for the sdb6??

  • @shafiulamin4128
    @shafiulamin4128 3 месяца назад

    Nice video

  • @nesrineb21
    @nesrineb21 5 месяцев назад

    thank you

  • @rivaldiprince9217
    @rivaldiprince9217 6 месяцев назад

    Thanks, very detail explanation

  • @harishraam6674
    @harishraam6674 7 месяцев назад

    Thanks a lot Sir.

  • @affiliateofamazon
    @affiliateofamazon 8 месяцев назад

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

  • @simonazike9944
    @simonazike9944 10 месяцев назад

    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 Год назад

    ruclips.net/video/z3jAyorSv-U/видео.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 Год назад

    That's Amazing Joined today, thank you

    • @TechVitals
      @TechVitals Год назад

      Thank you for your support.

  • @salmanmalik5029
    @salmanmalik5029 2 года назад

    Good explanation....

    • @TechVitals
      @TechVitals Год назад

      Thank you for the support.

  • @rishiverma9892
    @rishiverma9892 2 года назад

    Thank you so much,

  • @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 2 года назад

    cool video

  • @claudiohori6724
    @claudiohori6724 2 года назад

    Good explanation... I'm newby in ssh

  • @roopagl2719
    @roopagl2719 2 года назад

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

  • @bunu2996
    @bunu2996 2 года назад

    Explained Nicely.

  • @vedantzalke9019
    @vedantzalke9019 2 года назад

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

  • @lastcall9577
    @lastcall9577 2 года назад

    Good bruh

  • @evadimitrova3216
    @evadimitrova3216 2 года назад

    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 2 года назад

    Thank you very much, the best explanation.

  • @haroldnyirongo8273
    @haroldnyirongo8273 3 года назад

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