Tec-skill
Tec-skill
  • Видео 21
  • Просмотров 60 149
#8 Python For Beginner | set in Python
Set in Python is a data structure equivalent to sets in mathematics.
In this video we will see how to define set
how to access elements of set
how to create empty set
properties for set
Python Series for Beginner :
Python Tutorial-7(Tuple in Python) :(ruclips.net/video/TLzw4BcBVKQ/видео.html)
Python Tutorial-6(List in python) :(ruclips.net/video/ther3GbLB8M/видео.html)
Python Tutorial-5(Typecasting in Python) :ruclips.net/video/w7peGf62zBA/видео.html
Python Tutorial-4(Datatypes in Python) :ruclips.net/video/H8K1FQTspzc/видео.html
Python Tutorial-3(Variables in Python) :ruclips.net/video/Ot2qNvJLP5I/видео.html
Python Tutorial-2(Installation of Python) :ruclips.net/video/KYVsfY-41Aw/видео.html
Pyt...
Просмотров: 67

Видео

#7 Python For Beginner | Tuple in Python
Просмотров 853 года назад
A tuple is a collection of objects. Tuples are sequences, just like lists. The differences between tuples and lists are, tuples are immutable and lists are mutable. In this video we will see how to create tuple how access elements of tuple difference between list and tuple properties of tuple Python Series for Beginner : Python Tutorial-6(List in Python) :ruclips.net/video/ther3GbLB8M/видео.htm...
#6 Python For Beginner | List in Python
Просмотров 793 года назад
In this video you will see What is List? How to create List How to access elements of list. What are the properties of list How to add and remove element from a list Python Series for Beginner : Python Tutorial-5(Typecasting in python) :ruclips.net/video/w7peGf62zBA/видео.html Python Tutorial-4(Datatypes in python) :ruclips.net/video/H8K1FQTspzc/видео.html Python Tutorial-3(Variables in Python)...
#5 Python For Beginner | indexing on string | slicing on string | type casting in Python
Просмотров 2823 года назад
Friends , in this tutorial we will see string idexing and string slicing. We will also see type casting in python. There are 2 types of type casting in python 1)Implicit type casting 2)Explicit type casting Python Series for Beginner : Python Tutorial-4 :ruclips.net/video/H8K1FQTspzc/видео.html Python Tutorial-3 :ruclips.net/video/Ot2qNvJLP5I/видео.html Python Tutorial-2 :ruclips.net/video/KYVs...
#4 Python Tutorial For Beginner | Data types in Python
Просмотров 1073 года назад
In this tutorial we will see data types in python . int float complex bool str list tuple set frozenset dict bytes bytearray range None
#3 Python Tutorial For Beginners | Variables in python
Просмотров 433 года назад
Hello friends in this tutorial we will see variables in python. A variable is a named location used to store data in the memory. A variables is like a container that holds data that can be changed later in the program a = 10 a is the name of variable Variable names should have a combination of letters in lowercase (a to z) or uppercase (A to Z) or digits (0 to 9) or an underscore (_) identifier...
#2 Python Tutorial For Beginners | Python Installation | First Python Program in Pycharm
Просмотров 1553 года назад
In this video tutorial we will see how to install python in our system and run python code in different way . Download Python : www.python.org/downloads/ Download Pycharm : www.jetbrains.com/pycharm/ Python is an interpreted language . For learning it is better to use IDLE (Integrated Development and Learning Environment) For real time IDLE is not used instead Python IDE (Integrated Development...
#1 Python Tutorial For Beginner in 2021 | Introduction to Python
Просмотров 1223 года назад
In this video we will see : What is Python ? What are the features of Python? Where python is used ? Why python is so Popular? Python is a general purpose high level programming language Created by Guido Van Rossum in 1989 Python is used by Data scientist, Data analyst and Machine learning application Everybody loves python because of its simplicity . Python is very popular for writing scripts ...
15 amazing example of deleting lines from file using sed | Unix command
Просмотров 6 тыс.4 года назад
In this video we will discuss how to delete lines from a file using sed command.We will see 15 unique example. Learn Unix Command : 1)cat command : ruclips.net/video/pKKBpyQB4lw/видео.html 2)ls command : ruclips.net/video/HAQnKnJhmtQ/видео.html 3)mkdir and cd command : ruclips.net/video/XCSj7DpioLk/видео.html 4)cp command : ruclips.net/video/Ib7lrSL2voM/видео.html 5)cut , paste and tr command :...
15 Amazing Examples in GREP Command Unix | LINUX
Просмотров 2164 года назад
grep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command g/re/p, which has the same effect: doing a global search with the regular expression and printing all matching lines. Learn Unix Command : 1)cat command : ruclips.net/video/pKKBpyQB4lw/видео.html 2)ls command : ruclips.net/video/HAQnKnJhmtQ/видео.html 3...
grep command in Unix
Просмотров 6 тыс.4 года назад
grep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command g/re/p, which has the same effect: doing a global search with the regular expression and printing all matching lines. Learn Unix Command : 1)cat command : ruclips.net/video/pKKBpyQB4lw/видео.html 2)ls command : ruclips.net/video/HAQnKnJhmtQ/видео.html 3...
Top 5 Unix / Linux INTERVIEW QUESTIONS
Просмотров 4864 года назад
This video we will discuss about Unix interview questions. These are most commonly asked in any unix interview. Learn Unix Command : 1)cat command : ruclips.net/video/pKKBpyQB4lw/видео.html 2)ls command : ruclips.net/video/HAQnKnJhmtQ/видео.html 3)mkdir and cd command : ruclips.net/video/XCSj7DpioLk/видео.html 4)cp command : ruclips.net/video/Ib7lrSL2voM/видео.html 5)cut , paste and tr command ...
head and tail command in Unix | Linux
Просмотров 4,3 тыс.4 года назад
The head command, as the name implies, print the top N number of data of the given input. By default, it prints the first 10 lines of the specified files. If more than one file name is provided then data from each file is preceded by its file name. syntax: head [option] [filename] The tail command, as the name implies, print the last N number of data of the given input. By default it prints the...
sed command in Linux | Unix
Просмотров 13 тыс.4 года назад
SED command in UNIX is stands for stream editor and it can perform lot’s of function on file like, searching, find and replace, insertion or deletion. Though most common use of SED command in UNIX is for substitution or for find and replace. By using SED you can edit files even without opening it, which is much quicker way to find and replace something in file, than first opening that file in V...
uniq command in Unix | uniq command in Linux | uniq command
Просмотров 1,6 тыс.4 года назад
The uniq command in Linux is a command line utility that reports or filters out the repeated lines in a file. In simple words, uniq is the tool that helps to detect the adjacent duplicate lines and also deletes the duplicate lines. uniq filters out the adjacent matching lines from the input file(that is required as an argument) and writes the filtered data to the output file . Learn Unix Comman...
sort command in Unix | Linux
Просмотров 5 тыс.4 года назад
sort command in Unix | Linux
Unix Command |cut | paste | tr | Unix for beginner | Unix for BigData Developer | Linux command
Просмотров 1,9 тыс.4 года назад
Unix Command |cut | paste | tr | Unix for beginner | Unix for BigData Developer | Linux command
cp command in unix
Просмотров 3,1 тыс.7 лет назад
cp command in unix
mkdir and cd command
Просмотров 3,1 тыс.7 лет назад
mkdir and cd command
ls command in unix
Просмотров 6 тыс.7 лет назад
ls command in unix
cat command in unix
Просмотров 8 тыс.7 лет назад
cat command in unix