- 70
- 262 011
Tech Vitals
United States
Приєднався 20 лют 2020
Hello everyone.
Tech Vitals focus on providing you the deep understanding and knowledge of different technology with the basic to advanced tutorial videos. You will also be notified about latest technologies with the added features and comparison with it's older versions. We will also give you the list of top technologies that you might be interested in using to make you everyday life easier and better.
You can expect the contents of all the vitals of technology from Tech Vitals. The goal of this channel is to encourage you to Keep Learning.
Tech Vitals focus on providing you the deep understanding and knowledge of different technology with the basic to advanced tutorial videos. You will also be notified about latest technologies with the added features and comparison with it's older versions. We will also give you the list of top technologies that you might be interested in using to make you everyday life easier and better.
You can expect the contents of all the vitals of technology from Tech Vitals. The goal of this channel is to encourage you to Keep Learning.
#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/
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...
#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
#11 - List and it's built-in functions in Python
Переглядів 2314 роки тому
#11 - List and it's built-in functions 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
How to know the UUID for the sdb6??
Nice video
thank you
Thanks, very detail explanation
Thanks a lot Sir.
Hi after restarting the system with the command of - sudo systemctl restart -i the pc went to maintenance mode
This is amazing thank you for the clarification
Thanks you Really it's working
Fills like this guy is Finnish :)
Keep it up, dude.
The typing.NamedTuple has much better syntax and supports typing.
ua-cam.com/video/z3jAyorSv-U/v-deo.html
Bro I just completed watching the whole series of your!! Great Job bro!! Very well explained.
Thanks for the support. Keep Learning!
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.
Thanks for sharing that Chris.
This is explain very well, thank you!
Appreciated :)
That's Amazing Joined today, thank you
Thank you for your support.
Good explanation....
Thank you for the support.
Thank you so much,
Thanks for your support.
Pls make video on dns configured
Nice sir pls make video on trouble shooting on real time work....
Thanks very useful video
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.
This means a lot to me. Thanks for the acknowledgment.
@@TechVitals :)
I think you forgot to edit fstab file after changing the partition types.. it will give us error while booting..
Thanks 😊
Thanks 😊
none of the links for centos works.
Nice explanation 👍
Thank you!
𝕡𝕣𝕠𝕞𝕠𝕤𝕞 😣
Thanks for the video. Can you please let me know why do we write self.first_name = first_name? What is its significance?
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.
thank you
My Pleasure
Thanks for the video!! It really helped me understand these concepts better
My pleasure!!
Nice video Thank you for the explanation!
Pleasure brother!
the server can't read css & js bootstrap file in laravel 8. Anybody can help me??
hello.... how can we use mobax term from two systems simultaneously from the same account.... Please reply
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)?
Chwon command does not work in terminal
Thanks for this video!
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.
cool video
Good explanation... I'm newby in ssh
Very well explained in a simple and clean way, thank you!
Explained Nicely.
my dude ! you saved me from failing my assessments !!! thanks a lot brother.
Good bruh
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!
That’s awesome!
Thank you very much, the best explanation.
good stuff and helpful but the music in the background is little too loud