<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Suresh S</title>
    <description>The latest articles on DEV Community by Suresh S (@sureshlearnspython).</description>
    <link>https://dev.to/sureshlearnspython</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1747772%2Ff1ddc712-e2d1-4ba2-8d78-f96e818c794f.jpg</url>
      <title>DEV Community: Suresh S</title>
      <link>https://dev.to/sureshlearnspython</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sureshlearnspython"/>
    <language>en</language>
    <item>
      <title>GIT - Basics</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Tue, 20 Aug 2024 20:48:20 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/git-basics-3dkm</link>
      <guid>https://dev.to/sureshlearnspython/git-basics-3dkm</guid>
      <description>&lt;p&gt;GIT is a powerful version control system which used to manage the code across multiple users and track changes across different versions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Installation:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Download and install GIT from the below path&lt;br&gt;
&lt;code&gt;https://git-scm.com/download/win&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Once installed, Git can be used as a version control system through various commands.&lt;/li&gt;
&lt;li&gt;You can configure Git for a specific folder on your computer, allowing you to manage all changes to existing files and the addition of new files within that folder&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Basic commands:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. git init:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This will initialize new repository in the current directory. This also creates .&lt;strong&gt;git&lt;/strong&gt; directory and store all version control information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. git config:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;git config --global user.name "Suresh"&lt;br&gt;
git config --global user.mail "Suresh.Sundararaju@gmail.com"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. git status&lt;/strong&gt;&lt;br&gt;
Shows the current status of working area like staged, untracked and unstaged.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. git add &lt;/strong&gt;&lt;br&gt;
add changes from working directory to the staging area, preparing them to commit.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To add specific file: &lt;code&gt;git add "filename.py"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;To add all changes &lt;code&gt;git add .&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;5. git commit&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;git commit -m "&amp;lt;message&amp;gt;"&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Commits the staged changes with descriptive mesage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;6. git log&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Displays the list of commit history for the repository.&lt;/li&gt;
&lt;li&gt;It will show commit id, author, dates and commit changes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Creating a branch&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;git branch &amp;lt;branch_name&amp;gt;&lt;/code&gt; - to create branch&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git checkout &amp;lt;branch_name&amp;gt;&lt;/code&gt; - to switch to the new branch&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git branch -b &amp;lt;branch_name&amp;gt;&lt;/code&gt; - to create and switch to branch&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git branch&lt;/code&gt; - to view all the branches (current branch will be highlighted with asterisk)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Merge a branch:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Once completed work on a branch and want to integrate it into another branch (like master), merging comes to place.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It means all the changes we have made in &lt;code&gt;&amp;lt;branch_name&amp;gt;&lt;/code&gt; will be merged with &lt;code&gt;master&lt;/code&gt; branch.&lt;/li&gt;
&lt;li&gt;First, switch to the branch you want to merge into: &lt;code&gt;git checkout master&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Then, use &lt;code&gt;git merge &amp;lt;branch_name&amp;gt;&lt;/code&gt; to merge your branch.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Deleting branch&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Once the code changes in &lt;code&gt;&amp;lt;branch_name&amp;gt;&lt;/code&gt; merged into &lt;code&gt;&amp;lt;master&amp;gt;&lt;/code&gt; branch, we might need to delete branch.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use &lt;code&gt;git branch -d &amp;lt;branch_name&amp;gt;&lt;/code&gt; to delete branch&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>git</category>
    </item>
    <item>
      <title>Python - Dictionary, Set, Tuple</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Mon, 12 Aug 2024 13:07:58 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/python-dictionary-set-tuple-5em7</link>
      <guid>https://dev.to/sureshlearnspython/python-dictionary-set-tuple-5em7</guid>
      <description>&lt;p&gt;All three are different type of data structures in python. This is used to store different Collections of data. Based on the usecase of our requirement, we need to choose among these.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fps7bhqiggx0igzgy6iga.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fps7bhqiggx0igzgy6iga.png" alt="Comparision_dict_set_tuple" width="800" height="284"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;u&gt;Dictionary (dict):&lt;/u&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Dictionary is collection of key value pair, where each key is associated with a value&lt;/li&gt;
&lt;li&gt;Data can be retrieved based on key value(Key based search) as the keys are required to be unique.&lt;/li&gt;
&lt;li&gt;Dictionaries are unordered till 3.7, values can be changed. Key name cannot be changed directly&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Syntax:&lt;br&gt;
&lt;code&gt;inventory = {'apple':20, 'Banana':30 , 'carrot':15, 'milk':15}&lt;br&gt;
print('\t1. Inventory items', inventory)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Dictionaries can be added with another value/modfied the value of existing key using the below syntax&lt;/p&gt;

&lt;p&gt;&lt;code&gt;inventory['egg'] = 20&lt;br&gt;
inventory['bread'] = 25&lt;br&gt;
print('\t2. Updated Inventory items', inventory)&lt;br&gt;
inventory['egg']= inventory['egg']+5&lt;br&gt;
print('\t3. After restocking', inventory)&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;removing the data from dict can be done using del keyword. &lt;/li&gt;
&lt;li&gt;Checking the presence of data can be done using in keyword. Result will be boolean.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;del inventory['carrot']&lt;br&gt;
del inventory['bread']&lt;br&gt;
print('\t4. Updated Inventory after delete', inventory)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;is_bananas_in_inventory = 'Banana' in inventory&lt;br&gt;
print('\t5a. Is banana in inventory', is_bananas_in_inventory)&lt;br&gt;
is_oranges_in_inventory = 'Orange' in inventory&lt;br&gt;
print('\t5b. Is Orange in inventory', is_oranges_in_inventory)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Notes:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Additionaly &lt;code&gt;dict.items()&lt;/code&gt; will give each item in dictionary as tuple (like key value pair). by using list(dict.items()) we can also get the data as list. Using for loop and if condition, we can access particular key and do the desired operation for that data&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;for product, product_count in inventory.items():
    print('\t\t6. Product:', product, 'count is:', product_count)
print ('\t7. Iterating inventory gives tuple:', inventory.items())

#Printing only egg count(Value of key 'egg') by itearting dict
for product, product_count in inventory.items():
    if product is 'egg':
        print('\t8. Product:', product, ' its count is:', product_count)

#Printing egg count (value of key 'egg')
print('\t9. Count of apple',inventory['egg'])
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Output:
        1. Inventory items {'apple': 20, 'Banana': 30, 'carrot': 15, 'milk': 15}
        2. Updated Inventory items {'apple': 20, 'Banana': 30, 'carrot': 15, 'milk': 15, 'egg': 20, 'bread': 25}
        3. After restocking {'apple': 30, 'Banana': 30, 'carrot': 15, 'milk': 15, 'egg': 25, 'bread': 25}
        4. Updated Inventory after delete {'apple': 30, 'Banana': 30, 'milk': 15, 'egg': 25}
        5a. Is banana in inventory True
        5b. Is Orange in inventory False
                6. Product: apple count is: 30
                6. Product: Banana count is: 30
                6. Product: milk count is: 15
                6. Product: egg count is: 25
        7. Iterating inventory gives tuple: dict_items([('apple', 30), ('Banana', 30), ('milk', 15), ('egg', 25)])
        8. Product: egg  its count is: 25
        9. Count of apple 25
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;em&gt;Set:&lt;/em&gt;&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
A set is an unordered collection of unique elements. Sets are mutable, but they do not allow duplicate elements.&lt;/p&gt;

&lt;p&gt;Syntax:&lt;br&gt;
&lt;code&gt;botanical_garden =  {'rose', 'lotus', 'Lily'}&lt;br&gt;
botanical_garden.add('Jasmine')&lt;br&gt;
botanical_garden.remove('Rose')&lt;br&gt;
is_present_Jasmine = 'Jasmine' in botanical_garden&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
Above we can see to define a set, adding a values and removing it. If we add same elements in a set, it will through an error.&lt;/p&gt;

&lt;p&gt;Also we can compare two sets similar to venn diagram. Like Union, difference, intersection of two data sets.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;botanical_garden = {'Tuple', 'rose', 'Lily', 'Jasmine', 'lotus'}
rose_garden = {'rose', 'lotus', 'Hybiscus'}

common_flower= botanical_garden.intersection(rose_garden)
flowers_only_in_bg = botanical_garden.difference(rose_garden)
flowers_in_both_set = botanical_garden.union(rose_garden)

Output will be a set by default. 
If needed we can typecase into list using list(expression)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;em&gt;Tuple:&lt;/em&gt;&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
A tuple is an ordered collection of elements that is immutable, meaning it cannot be changed after it is created.&lt;/p&gt;

&lt;p&gt;Syntax:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ooty_trip = ('Ooty', '2024-1-1', 'Botanical_Garden')
munnar_trip = ('Munar', '2024-06-06', 'Eravikulam National Park')
germany_trip = ('Germany', '2025-1-1', 'Lueneburg')
print('\t1. Trip details', ooty_trip, germany_trip)

#Accessing tuple using index
location = ooty_trip[0]
date = ooty_trip[1]
place = ooty_trip[2]

print(f'\t2a. Location: {location} Date: {date} Place: {place} ')

location, date, place =germany_trip # Assinging a tuple to 3 different variables
print(f'\t2b. Location: {location} Date: {date} Place: {place} ')

print('\t3. The count of ooty_trip is ',ooty_trip.count)

Output:
   1. Trip details ('Ooty', '2024-1-1', 'Botanical_Garden') ('Germany', '2025-1-1', 'Lueneburg')
   2a. Location: Ooty Date: 2024-1-1 Place: Botanical_Garden
   2b. Location: Germany Date: 2025-1-1 Place: Lueneburg
   3. The count of ooty_trip is  &amp;lt;built-in method count of tuple object at 0x0000011634B3DBC0&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Tuples can be accessed using index. The values of tuples can be assigned to multiple variables easily. We can combine two tuples which will create another tuple. But tuple cannot be modified.&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>Python - files</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Mon, 12 Aug 2024 08:51:40 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/python-files-ecg</link>
      <guid>https://dev.to/sureshlearnspython/python-files-ecg</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;u&gt;File operations:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;File reading&lt;/li&gt;
&lt;li&gt;File writing&lt;/li&gt;
&lt;li&gt;appending the content&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;File Reading:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;with open('Logs.txt', 'r') as file:&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;open&lt;/u&gt; is python built in function used to open file. First arguments refers the file name and second argument is mode of reading.&lt;br&gt;
&lt;u&gt;with&lt;/u&gt; statement is for automatic closing of file. This will prevent memory leaks, providing a better resource manageement&lt;br&gt;
&lt;u&gt;as file&lt;/u&gt; as keyword assigns the opened file object to variable file&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;with open('logs.txt', 'r')as file:
    # print(file, type(file))
    content = file.readlines()
    print(content, type(content))   # this content is a list. Elements are each line in file 
    for line in content:
        print(line, end='') # end='' is defined to avoid \n as list iteration ends already with \n
        #print(line.strip())
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;code&gt;['This is the file used to store logs\n', 'Created on 12.08.2024\n', 'Author Suresh Sundararaju\n'] &amp;lt;class 'list'&amp;gt;&lt;br&gt;
This is the file used to store logs&lt;br&gt;
Created on 12.08.2024&lt;br&gt;
Author Suresh Sundararaju&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;file.readlines() will give the file content as list&lt;/li&gt;
&lt;li&gt;&lt;p&gt;file.readline() will give the first line as string&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Iterating the list, each line can be retrieved as string&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Iterating the later, each str can be retrieved as character&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here when iterating the list via for loop, the return ends with newline. when printing with print statment, another new line comes. To avoid that strip() or end='' is used&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;File writing:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;with open('notes.txt','w') as file:&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This is similar to file reading. the only syntax difference is mode is given as 'w'. Here notes.txt file will be created.&lt;/p&gt;

&lt;p&gt;Further to write the content, we can use file.write('Content')&lt;br&gt;
In write mode, a file is created each time and the content within that block is overwritten&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# Write in file
with open('notes.txt', 'w') as file:
    i=file.write('1. fILE CREATED\n')
    i=file.write('2. fILE updated\n')
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;Appending in file:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;with open('notes.txt', 'a') as file:&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;For appending, mode='a' is to be used with file.write(str) or file.writelines(list). Here in the existing file, the content will be updated at the end.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#Append file
with open('notes.txt', 'a') as file:
    file.write('Content appended\n')


#Read all the lines and store in list
with open('notes.txt', 'r') as file:
    appendcontent = file.readlines()
    print(appendcontent)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;code&gt;['1. fILE CREATED\n', '2. fILE updated\n', 'Content appended\n']&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Notes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;There is some other modes available 'r+','w+','a+'&lt;/li&gt;
&lt;li&gt;exception can be added&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>Python - Lists and Tasks Solved!</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Thu, 01 Aug 2024 06:37:16 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/python-lists-and-tasks-mo6</link>
      <guid>https://dev.to/sureshlearnspython/python-lists-and-tasks-mo6</guid>
      <description>&lt;p&gt;After learning indexing and slicing, we started learning more about Lists and in built methods. The methods are&lt;/p&gt;

&lt;p&gt;Returns None&lt;/p&gt;

&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;append&lt;/li&gt;
&lt;li&gt;insert&lt;/li&gt;
&lt;li&gt;remove&lt;/li&gt;
&lt;li&gt;Sort&lt;/li&gt;
&lt;li&gt;reverse&lt;/li&gt;
&lt;li&gt;clear&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;Returns int&lt;/p&gt;

&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;index&lt;/li&gt;
&lt;li&gt;count&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;Returns str&lt;/p&gt;

&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;pop&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;For smaller changes in delivery list, in built function itself is enough. But when we want to do more operations with the list, for loop, if loop will be needed. &lt;/p&gt;

&lt;p&gt;For eg, there is a list &lt;code&gt;['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop', 3]&lt;/code&gt; where only string needs to be converted to upper case. Here we cannot use list or string methods directly. The ideal logic would be&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;we have to iterate the list one by one&lt;/li&gt;
&lt;li&gt;Check the item is string or other type&lt;/li&gt;
&lt;li&gt;Use string method &lt;code&gt;upper()&lt;/code&gt; and &lt;code&gt;append()&lt;/code&gt; accordingly&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So here for loop, if,else condition is needed&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;delivery_list= ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop', 3]
upper_list = []
for item in delivery_list:
    if type(item) == str:
        upper_list.append(item.upper())
    else:
        upper_list.append(item)

print('Upper case list is:', upper_list)

Output:
Upper case list is: ['PENCIL', 'NOTEBOOK', 'MARKER', 'HIGHLIGHTER', 'GLUE STICK', 'ERASER', 'LAPTOP', 3]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Tasks given were to practice more about such methods and logics. those were interesting to find the logic or methods available.&lt;br&gt;
Solved details are&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Tasks_list.py
#######################################################################################
#1. Create a list of five delivery items and print the third item in the list. 
#eg: [“Notebook”, “Pencil”, “Eraser”, “Ruler”, “Marker”]
#######################################################################################

delivery_list = ['Notebook', 'Pencil', 'Eraser', 'Ruler', 'Marker']
print (f'\t1. Third item in the list{delivery_list} is: {delivery_list[2]}')

#######################################################################################
# 2.A new delivery item “Glue Stick” needs to be added to the list. 
# Add it to the end of the list and print the updated list.
#######################################################################################

delivery_list.append('Glue Stick')
print('\t2. Updated delivery list is:', delivery_list)

#######################################################################################
# 3. Insert “Highlighter” between the second and third items and print the updated list.
#######################################################################################

delivery_list.insert(2, 'Highlighter')
print('\t3. Updated list by inserting Highlighter b/w 2nd &amp;amp;3rd:', delivery_list)

#######################################################################################
# 4. One delivery was canceled. Remove “Ruler” from the list and print the updated list.
#######################################################################################
delivery_list.remove('Ruler')
print('\t4. Updated list after removing Ruler is:', delivery_list)

#######################################################################################
# 5. The delivery man needs to deliver only the first three items. 
# Print a sublist containing only these items.
#######################################################################################
sublist =[]
for item in delivery_list[:3]:
    #sublist =sublist.append(item)      #This is incorrect as sublist.append() returns None.
    sublist.append(item)

print('\t5. Sublist of first three elements using loop:', sublist) 
print('\t   Sublist of first three elements using slicing:', delivery_list[:3]) 


#######################################################################################
# 6.The delivery man has finished his deliveries. 
# Convert all item names to uppercase using a list comprehension and print the new list.
#######################################################################################

uppercase_list=[]
for item in delivery_list:
    uppercase_list.append(item.upper())
print('\t6. Uppercase list of delivery items:', uppercase_list)

uppercase_list_lc = [item.upper() for item in delivery_list]
print('\t6. Uppercase list using list compre:', uppercase_list_lc)



#######################################################################################
# 7. Check if “Marker” is still in the list and print a message indicating whether it is found.
# 8. Print the number of delivery items in the list.
#######################################################################################

is_found= delivery_list.count('Marker')
if 'Marker' in delivery_list:
    print(f'\t7. Marker is found {is_found} times')
else:
    print(f'\t7. Marker is not found {is_found}')

print(f'\t8. Number of delivery item from {delivery_list} is: ', len(delivery_list))

#######################################################################################
# 9. Sort the list of items in alphabetical order and print the sorted list
# 10. The delivery man decides to reverse the order of his deliveries. 
# Reverse the list and print it
#######################################################################################


delivery_list.sort()
print(f'\t9. Sorted delivery list is {delivery_list}')

delivery_list.reverse()
print(f'\t10. Reverse list of delivery list is {delivery_list}')

#######################################################################################
# 11. Create a list where each item is a list containing a delivery item and its delivery time. 
# Print the first item and its time.
#######################################################################################

delivery_list_time = [['Letter', '10:00'], ['Parcel', '10:15'], ['Magazine', '10:45'], ['Newspaper', '11:00']]
print('\t11. First delivery item and time', delivery_list_time[0])

delivery_list = ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop']
delivery_time = ['11:00','11:20','11:40','12:00','12:30','13:00', '13:30']

#Paring of two list using zip
paired_list=list(zip(delivery_list,delivery_time))
print('\tPaired list using zip:', paired_list[0:2])

#Combine corresponding item from multiple list using zip and for
item_time_list = [[item,time] for item, time in zip(delivery_list, delivery_time)]
print ('\tItem_time_list using list comprehension: ', item_time_list[0:1])


#######################################################################################
# 12. Count how many times “Ruler” appears in the list and print the count.
# 13. Find the index of “Pencil” in the list and print it.
# 14. Extend the list items with another list of new delivery items and print the updated list.
# 15. Clear the list of all delivery items and print the list.
# 16. Create a list with the item “Notebook” repeated three times and print the list.
# 17. Using a nested list comprehension, create a list of lists where each sublist contains an item 
# and its length, then print the new list.
# 18. Filter the list to include only items that contain the letter “e” and print the filtered list.
# 19. Remove duplicate items from the list and print the list of unique items.
#######################################################################################

is_found= delivery_list.count('Ruler')
print('\t12. The count of Ruler in delivery list is:', is_found)

index_pencil = delivery_list.index('Pencil')
print(f'\t13. Index of Pencil in {delivery_list} is {index_pencil}')

small_list = ['Ink','']
delivery_list.extend(small_list)
print('\t14. Extend list by extend:', delivery_list)

item_time_list.clear()
print('\t15. Clearing the list using clear():', item_time_list)

Notebook_list = ['Notebook']*3
print('\t16. Notebook list is:', Notebook_list)

#Filter the list with e letter
delivery_list

new_delivery_list = []
for item in delivery_list:
    if 'e' in item:
        new_delivery_list.append(item)

print ('\t18. Filtered list with items containing e:', new_delivery_list)

new_list_compre = [item for item in delivery_list if 'e' in item]
print ('\t18. Filtered list by list comprehension:', new_list_compre)

#Remove duplicate items
delivery_list.extend(['Ink', 'Marker'])
print('\t   ', delivery_list)

for item in delivery_list:
    if delivery_list.count(item) &amp;gt; 1:
        delivery_list.remove(item)

print('\t19. Duplicate remove list:',delivery_list)
print('\t19. Duplicate remove list:',list(set(delivery_list)))

#######################################################################################
# 17. Using a nested list comprehension, create a list of lists where each sublist contains an item 
# and its length, then print the new list.
#######################################################################################

#without list comprehension
nested_list = []
for item in delivery_list:
    nested_list.append([item, len(item)])

print('\t17. ', nested_list[-1:-6:-1])

#Using list comprehension printing nested list
nested_list = [[item,len(item)] for item in delivery_list]
print('\t17. Nested list with length:', nested_list[:5])

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Answers:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PS C:\Projects\PythonSuresh&amp;gt; python Tasks_list.py
        1. Third item in the list['Notebook', 'Pencil', 'Eraser', 'Ruler', 'Marker'] is: Eraser
        2. Updated delivery list is: ['Notebook', 'Pencil', 'Eraser', 'Ruler', 'Marker', 'Glue Stick']
        3. Updated list by inserting Highlighter b/w 2nd &amp;amp;3rd: ['Notebook', 'Pencil', 'Highlighter', 'Eraser', 'Ruler', 'Marker', 'Glue Stick']
        4. Updated list after removing Ruler is: ['Notebook', 'Pencil', 'Highlighter', 'Eraser', 'Marker', 'Glue Stick']
        5. Sublist of first three elements using loop: ['Notebook', 'Pencil', 'Highlighter']
           Sublist of first three elements using slicing: ['Notebook', 'Pencil', 'Highlighter']
        6. Uppercase list of delivery items: ['NOTEBOOK', 'PENCIL', 'HIGHLIGHTER', 'ERASER', 'MARKER', 'GLUE STICK']
        6. Uppercase list using list compre: ['NOTEBOOK', 'PENCIL', 'HIGHLIGHTER', 'ERASER', 'MARKER', 'GLUE STICK']
        7. Marker is found 1 times
        8. Number of delivery item from ['Notebook', 'Pencil', 'Highlighter', 'Eraser', 'Marker', 'Glue Stick'] is:  6
        9. Sorted delivery list is ['Eraser', 'Glue Stick', 'Highlighter', 'Marker', 'Notebook', 'Pencil']
        10. Reverse list of delivery list is ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser']
        11. First delivery item and time ['Letter', '10:00']
        Paired list using zip: [('Pencil', '11:00'), ('Notebook', '11:20')]
        Item_time_list using list comprehension:  [['Pencil', '11:00']]
        12. The count of Ruler in delivery list is: 0
        13. Index of Pencil in ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop'] is 0
        14. Extend list by extend: ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop', 'Ink', '']
        15. Clearing the list using clear(): []
        16. Notebook list is: ['Notebook', 'Notebook', 'Notebook']
        18. Filtered list with items containing e: ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser']
        18. Filtered list by list comprehension: ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser']
            ['Pencil', 'Notebook', 'Marker', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop', 'Ink', '', 'Ink', 'Marker']
        19. Duplicate remove list: ['Pencil', 'Notebook', 'Highlighter', 'Glue Stick', 'Eraser', 'Laptop', '', 'Ink', 'Marker']
        19. Duplicate remove list: ['', 'Ink', 'Pencil', 'Notebook', 'Marker', 'Eraser', 'Laptop', 'Highlighter', 'Glue Stick']
        17.  [['Marker', 6], ['Ink', 3], ['', 0], ['Laptop', 6], ['Eraser', 6]]
        17. Nested list with length: [['Pencil', 6], ['Notebook', 8], ['Highlighter', 11], ['Glue Stick', 10], ['Eraser', 6]]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>python</category>
      <category>programming</category>
    </item>
    <item>
      <title>Indexing and Slicing</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Thu, 25 Jul 2024 14:55:36 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/indexing-and-slicing-4hk</link>
      <guid>https://dev.to/sureshlearnspython/indexing-and-slicing-4hk</guid>
      <description>&lt;ul&gt;
&lt;li&gt;Indexing and slicing is important concepts for me.&lt;/li&gt;
&lt;li&gt;Possible application is LSB and MSB in digital electronics&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Application:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
I have a device which sets temperature based on the float value I set from driver or user interface. Internally float value converted into hex and device is asked to set the required temperature.&lt;/p&gt;

&lt;p&gt;But When we want to read the complete details from device, it will be in hex format with multiple bytes. If I need only one byte of data in reverse order of its binary value, then slicing is best way to extract that value.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;But I think Python is more efficient. When I learn more concepts, then some package related to hex to binary or dealing with hex datas would have some functions.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Learning:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
I have tried and learnt the below items from this session&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Positive indexing&lt;/li&gt;
&lt;li&gt;Negative indexing&lt;/li&gt;
&lt;li&gt;Slicing using positive indexing&lt;/li&gt;
&lt;li&gt;slicing using negative indexing&lt;/li&gt;
&lt;li&gt;Slicing in reverse order requires third argument  Step
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###############################################
#         INDEXING
###############################################

'''
Positive Indexing:
H E L L O   W O R L D
0 1 2 3 4 5 6 7 8 9 10
'''

#Positive indexing
message = 'HELLO WORLD'
print ('Postive indexing:', message[0], message [1], message [2], message [3], message [4])  # H E L L O

'''
Here indexing starts with 0. Python is able to strip the string like array elements
Negative indexing
H   E   L   L   O
-5  -4 -3  -2  -1
'''

#Negative indexing
message1 = '  Hello'
print ('Negative Indexing:', message1[-1], message1[-2], message1[-3], message1[-4], message1[-5]) # o l l e H

'''
Length is always number of characters or elements in string. 
  - length &amp;gt; last element index
  - length = last index +1

when we define out of range indexing, string index out of range error would come
In the above example,
'''

print('Length of string:',len(message), len(message1))     # 11 , 7


###############################################
#         SLICING
###############################################

#Message[Start:Stop:Step]
print('\nSlicing 1 to 4th index elements of HELLO WORLD using message[1:5]:', message[1:5])
print('Slicing before 6th index elements of HELLO WORLD using message[:6]:', message[:6])
print('Slicing from 6th index elements of HELLO WORLD using message[6:]:', message[6:])
print('Slicing from 6th index elements of HELLO WORLD using message[6: 100]:', message[6:100])


# Slicing using negative index also possible
print('\nSlicing using negative indexing in HELLO WORLD using message[-11:5]:', message[-11:5])
# Here number 5 is STOP, it refers 5th index
print('Slicing using negative indexing in HELLO WORLD using message[-11:-4]:', message[-11:-4])

'''
Reversing the message contents can be done using step definition
message [5:-10:-1]
'''
print('\nSlicing in reverse order using step (message [5:-12:-1]):',message [5:-12:-1])
print('Slicing in reverse order only ROW(NI) from HELLO WORLD (message [-3:-7:-1]):',message [-3:-7:-1])
print('Slicing in reverse order only ROW(PI) from HELLO WORLD (message [8:4:-1]):',message [8:4:-1])

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Result:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PS C:\Projects\PythonSuresh&amp;gt; python Class7.py
Postive indexing: H E L L O
Negative Indexing: o l l e H
Length of string: 11 7

Slicing 1 to 4th index elements of HELLO WORLD using message[1:5]: ELLO
Slicing before 6th index elements of HELLO WORLD using message[:6]: HELLO 
Slicing from 6th index elements of HELLO WORLD using message[6:]: WORLD
Slicing from 6th index elements of HELLO WORLD using message[6: 100]: WORLD

Slicing using negative indexing in HELLO WORLD using message[-11:5]: HELLO
Slicing using negative indexing in HELLO WORLD using message[-11:-4]: HELLO W

Slicing in reverse order using step (message [5:-12:-1]):  OLLEH
Slicing in reverse order only ROW(NI) from HELLO WORLD (message [-3:-7:-1]): ROW
Slicing in reverse order only ROW(PI) from HELLO WORLD (message [8:4:-1]): ROW
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>python</category>
    </item>
    <item>
      <title>Python Functions - Solved</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Thu, 18 Jul 2024 14:34:51 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/task-functions-203n</link>
      <guid>https://dev.to/sureshlearnspython/task-functions-203n</guid>
      <description>&lt;p&gt;Task after functions class was checked. 7 tasks were given.. all the tasks are compelted.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Lessons learnt:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If comparison should always be with string with '' (if choice ==1 is incorrect but choice=='1' is correct.. choice is received as an input from user&lt;/li&gt;
&lt;li&gt;print should not be assigned with any value&lt;/li&gt;
&lt;li&gt;function definition must be on top not in below&lt;/li&gt;
&lt;li&gt;Recursive function is not clear&lt;/li&gt;
&lt;li&gt;Found a way to summarise multiple function task in single code.&lt;/li&gt;
&lt;li&gt;Should not do IO like prints inside the function unnecessarily which is one of the good practice&lt;/li&gt;
&lt;li&gt;Python has wonderful organization of code by itself with indent option&lt;/li&gt;
&lt;li&gt;return type of function is dynamic. The operation inside the function determines the return type. eg, div, argument received may be int but final value will be float.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Tasks:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Write a function greet that takes a name as an argument and prints a greeting message.&lt;/li&gt;
&lt;li&gt;Write a function sum_two that takes two numbers as arguments and returns their sum.&lt;/li&gt;
&lt;li&gt;Write a function is_even that takes a number as an argument and returns True if the number is even, and False if it is odd.&lt;/li&gt;
&lt;li&gt;Write a function find_max that takes two numbers as arguments and returns the larger one.&lt;/li&gt;
&lt;li&gt;Write a function multiplication_table that takes a number n and prints the multiplication table for n from 1 to 10.&lt;/li&gt;
&lt;li&gt;Write a function celsius_to_fahrenheit that takes a temperature in Celsius and returns the temperature in Fahrenheit.&lt;/li&gt;
&lt;li&gt;Write a function power that takes two arguments, a number and an exponent, and returns the number raised to the given exponent. The exponent should have a default value of 2.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import time

###########################################################################################################################
# 1. Write a function greet that takes a name as an argument and prints a greeting message
###########################################################################################################################
def greet(name):
    print(f"Hello {name}! Welcome to my python code. \nThank you for attending this Task party\n")

# greet('Suresh')
# greet(input("Welcome Guest: "))

###########################################################################################################################
# 2. Write a function sum_two that takes two numbers as arguments and returns their sum.
###########################################################################################################################
def sum_two(num1, num2):
    result = num1+num2
    print(f"Addition of {num1} and {num2} is: {result}\n")
    return result

# add = sum_two(3, 5)
# add=sum_two(int(input("Enter the num1 for addition: ")), int(input("Enter the num2 for addition: ")))

#############################################################################################################################
# 3. Write a function is_even that takes a number as an argument and returns True if the number is even, and False if it is odd.
#############################################################################################################################

def is_even(num):
    if num % 2 == 0:
        print (f"The number {num} is Even")
        return True

    else:
        print (f"The number {num} is Odd")
        return False

print(is_even (4))
print(is_even (int(input("Enter the number to find Odd/Even: "))))

# num = int(input("Enter the number to find Odd/Even: "))
# print = is_even(num)

###########################################################################################################################
#  4. Write a function find_max that takes two numbers as arguments and returns the larger one.
###########################################################################################################################

def find_max(num1, num2):
    if num1&amp;gt;num2:
        print (f"The number {num1} is bigger")
        return num1

    elif num1&amp;lt;num2:
        print (f"The number {num2} is bigger")
        return num2

    else:
        print(f"Both the numbers {num1} and {num2} are equal")

# result = find_max(int(input("Enter the num1 to find max: ")), int(input("Enter the num2 to find max: ")))
# print("\n")

###########################################################################################################################
#  5. Write a function multiplication_table that takes a number n and prints the multiplication table for n from 1 to 10.
###########################################################################################################################
def multiplication_table(n):
    for i in range(1,11):
        print(f"{i} x {n} = {i*n}")
        time.sleep(0.5)

# multiplication_table(int(input("Enter the multiplication table required: ")))
# print("\n")

###########################################################################################################################
# 6. Write a function celsius_to_fahrenheit that takes a temperature in Celsius and returns the temperature in Fahrenheit.
###########################################################################################################################
def celsius_to_fahrenheit(celsius):
    fahrenheit = (celsius * 9/5) + 32
    print(f"{celsius}°C is equal to {fahrenheit}°F")
    return fahrenheit


###########################################################################################################################
# 7. Write a function power that takes two arguments, a number and an exponent, and returns the number raised to the given exponent. 
# The exponent should have a default value of 2.
###########################################################################################################################
def power(base, exponent=2):
    result = base ** exponent
    print(f"The {base} raised to the power of {exponent} is {result}")
    return result


def tasks_function():
    # print("Tasks from function")
    print("Select Task")
    print("1. Function to greet and printing greeting message ")
    print("2. Function to sum two numbers")
    print("3. Function to find odd or even")
    print("4. Bigger number from two inputs")
    print("5. Multiplication table")
    print("6. celcius to Fahrenheit")
    print("7. Exponent of number ")

    # choice = input("Enter choice(1/2/3/4/5/6/7): ")

    total_times = 3
    while(total_times&amp;gt;0):
        total_times = total_times-1
        choice = input("Enter choice(1/2/3/4/5/6/7): ")

        if choice=='1':
            greet(input("Welcome Guest: "))

        elif choice=='2':
            add=sum_two(int(input("Enter the num1 for addition: ")), int(input("Enter the num2 for addition: ")))

        elif choice =='3':
            num = int(input("Enter the number to find Odd/Even: "))
            is_even(num)

        elif choice=='4':
            result = find_max(int(input("Enter the num1 to find max: ")), int(input("Enter the num2 to find max: ")))
            print("\n")

        elif choice=='5':
            multiplication_table(int(input("Enter the multiplication table required: ")))
            print("\n")

        elif choice=='6':
            celsius = int(input("Enter the temperature in Celsius: "))
            celsius_to_fahrenheit(celsius)

        elif choice=='7':
            base = int(input("Enter the base number: "))
            exponent_input = input("Enter the exponent (default is 2): ")
            if exponent_input:
                exponent=int(exponent_input)
            else:
                exponent=2
            # exponent = int(exponent_input) if exponent_input else 2
            power(base, exponent)

        else:
            print("Invalid Choice. Please enter a number between 1 and 7.")

tasks_function()
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>python</category>
    </item>
    <item>
      <title>Health Insurance - HDFC Ergo</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Mon, 15 Jul 2024 10:41:06 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/health-insurance-3bf0</link>
      <guid>https://dev.to/sureshlearnspython/health-insurance-3bf0</guid>
      <description>&lt;h2&gt;
  
  
  HDFC Ergo: my:Optima Secure
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Sum insured: 10lakh&lt;/li&gt;
&lt;li&gt;Initial Quote: 66428&lt;/li&gt;
&lt;li&gt;Premium revised : 77499&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Exclusions:&lt;/u&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Preexisting diseases(PED) are not covered for 36 months&lt;/li&gt;
&lt;li&gt;Specified Disease/Procedure&lt;/li&gt;
&lt;li&gt;Claims within 30days for any illness except accident&lt;/li&gt;
&lt;li&gt;Investigation &amp;amp; Evaluation&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Declared items:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Diabetes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;For Diabetes - Gemer P2 tablet.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Asthma&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;My mother was diagnosed with allergic reactions to dust(Wheezing problem) around 04.07.2022. I do not have any reports for that diagnosis. From that time, she has been taking these medicines regularly since then.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Okacet  10mg &lt;/li&gt;
&lt;li&gt;TheoAsthalin tablets &lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Reference:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;PED Declared and Accepted:&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr7i0mb7fpacnfrcks1z5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr7i0mb7fpacnfrcks1z5.png" alt="PED_Declared_Accepted" width="800" height="516"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Questions from HDFC ergo:&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb2nh0p9ooh2x8m9tvlpz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb2nh0p9ooh2x8m9tvlpz.png" alt="Question_From_HDFC_Ergo" width="534" height="190"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;1. PED:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;36 months no coverage&lt;/li&gt;
&lt;li&gt;Coverage after 36months is subject to accepted conditions&lt;/li&gt;
&lt;li&gt;Under portablity norms, waiting period can be reduced&lt;/li&gt;
&lt;li&gt;Sum insured extension apply, exclusion applied afresh&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;2. Specified Disease/Procedure&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;24 months no coverage for the listed illness.&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Internal Congenital: Diseases of gall bladder, Pancreatitis, Catarack, Osteroarthritis and Osteoporosis&lt;/li&gt;
&lt;li&gt;Non Infective: Kidneystone and Urinary bladder stone, Ulcer and erosion of stomach, Reflux in Gastro Esophageal, Fissure/Fistula, Heamorrhoids&lt;/li&gt;
&lt;li&gt;Pilonidal sinus: Cysts, modules, polyps including breast lumps, PCOD, Sinusitis, Rhinitis, Skin tumors, Tonsililitis&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;24 months no coverage for the listed surgical procedures

&lt;ol&gt;
&lt;li&gt;Hernia, surgery for Vericose veins and vericose ulcers&lt;/li&gt;
&lt;li&gt;Joint relacement surgeries, polapsed Uterus, Glaucoma, Rectal prolapse, ENT surgery, Perianal abscesses.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;3. 30 day waiting period&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;&lt;u&gt;4. Investigation and Evaluation&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Expenses primarily for diagnosis are excluded.&lt;br&gt;
Rest cure, Rehab and respite care are exlused&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Obesity related&lt;/li&gt;
&lt;li&gt;Cosmetic and plastic surgery&lt;/li&gt;
&lt;li&gt;adventure sports related&lt;/li&gt;
&lt;li&gt;Breach of law with criminal intent&lt;/li&gt;
&lt;li&gt;Excluded providers&lt;/li&gt;
&lt;li&gt;Treatement for Alchoholism, drug&lt;/li&gt;
&lt;li&gt;Unproved treatment&lt;/li&gt;
&lt;li&gt;Surrogacy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For more details, please refer the below document:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.hdfcergo.com/docs/default-source/downloads/policy-wordings/health/optima-secure-revision-pw.pdf" rel="noopener noreferrer"&gt;https://www.hdfcergo.com/docs/default-source/downloads/policy-wordings/health/optima-secure-revision-pw.pdf&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Customer INformation Sheet downloaded from application&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>insurance</category>
    </item>
    <item>
      <title>Safety When working on or near Electrical installation</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Fri, 12 Jul 2024 10:28:52 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/safety-when-working-on-or-near-electrical-installation-4lgi</link>
      <guid>https://dev.to/sureshlearnspython/safety-when-working-on-or-near-electrical-installation-4lgi</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;u&gt;Section1 - Welcome and Introduction&lt;/u&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;This course provides basic information to perform safely when working on or near electrical installations&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;This is based on German and European regulations and standards including DGUV regulation, DIN VDE 0105-100, EN 50110-1 and other relevant standards&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;u&gt;Section2 - Legal Foundataions:&lt;/u&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Here the standards and rules to be considered &lt;u&gt;when working on or near electrical installations&lt;/u&gt;. Concepts of European standard and application in Germany will be discussed in simple terms.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Voltage levels:&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;0-1000V AC&lt;/li&gt;
&lt;li&gt;0-1500V DC&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Safely working is important and information about correct and safe approach must be provided to the workers. Hence this course is important. Also according to &lt;u&gt;Accident prevention regulation DGUV, regulation1&lt;/u&gt;, Employers duty is to provide safety instructions to all individuals once a year. This will give a cap and can be appointed as &lt;strong&gt;electro technically instructed person&lt;/strong&gt;. Main Objective is "to ensure maximum safety to all individuals".&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;The Regulations in Germany&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How to act safely when &lt;u&gt;working on or near electrical installations or equipment based on DGUV regulation 3 and DIN VDE 0105-100&lt;/u&gt; is covered here. This is specific to Germany. &lt;/li&gt;
&lt;li&gt;European standard for &lt;u&gt;Operation of electrical installations EN50110 &lt;/u&gt;imposes less strict requirements&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Technical Rules in Germany&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;There are techinical rules for workplaces and operational safety&lt;/li&gt;
&lt;li&gt;Accident insurance agencies &lt;strong&gt;BG ETEM (for the electrical industry and electrical work)&lt;/strong&gt; issue accident prevention regulation together with &lt;strong&gt;DGUV&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The following rules are important.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;DGUV Regulation1&lt;/strong&gt; - Principles of prevention&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DGUV Regulation3&lt;/strong&gt; - Electrical installation and equipment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DIN VDE 0105-100&lt;/strong&gt; "Operation of electrical installations" (This contains European minimum requirements + additional extensions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Other Rules:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;DIN VDE 0100 - Low voltage electrical installations&lt;/li&gt;
&lt;li&gt;DIN VDE 1000-10 . Reqs for persons working in a filed of electrical engineering.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;The overall Regulations in Europe:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
European Standard for Electrical safety regulation is published by &lt;strong&gt;CENELEC&lt;/strong&gt;. EN50110-1 is &lt;strong&gt;"Operation of electrical installations&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Part1:
Minimum requirements for safety performing electrical work and applied to all CENELEC members&lt;/li&gt;
&lt;li&gt;Part2: Set of annexes, one per each country.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;EN50110 can be applied everywhere. Many countries outside Europe thinks this is enough as long as it is not work on liveparts or HV (&amp;gt;1000V AC/1500V DC)&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;u&gt;Section 3 - The Dangers of Electricity&lt;/u&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Biggest threats of electricity&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Electric Shock&lt;/li&gt;
&lt;li&gt;Injuries from instinctive reaction to an electrical shock&lt;/li&gt;
&lt;li&gt;Burns due to an explosion or an arc flash/arc blast&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;u&gt;&lt;strong&gt;Electrical Shock:&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsk6l4n386vn6iuev05cz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsk6l4n386vn6iuev05cz.png" alt="Image description" width="509" height="356"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The damage to the part depends on &lt;strong&gt;Duration&lt;/strong&gt; and &lt;strong&gt;amount of energy&lt;/strong&gt; running through it. Greater amount of energy &amp;amp; greater duration, greater the damage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Effect * Duration = Energy&lt;/li&gt;
&lt;li&gt;P(W) * h (hours) = E (kWh); 1kWh is 3.6megajoule (MJ)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Consequence of current through the body can be very low(harmless) to Very high(fatal) for an almost similar situations. The current through the circuit can be calculated using Ohms law.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;U(v)=R(ohm)*I(A)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;I = U/R&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Voltage:&lt;/strong&gt;&lt;br&gt;
Here magnitude of voltage is crucial for the current. So higher the voltage, &lt;strong&gt;the greater and more dangerous the current becomes&lt;/strong&gt;. In high voltages, even without touching the live parts, a circuit can be made via air through an &lt;u&gt;arc flash&lt;/u&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Internal Impedance of Human body:&lt;/strong&gt;&lt;br&gt;
Once the person becomes part of electrical circuit, impedance of human body determines the consequence. The standard &lt;strong&gt;DIN IEC/TS 60 479-1&lt;/strong&gt; refers to the effect of electrical current on human beings. The value of body impedance depend on several factors&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The current path&lt;/li&gt;
&lt;li&gt;The touch voltage&lt;/li&gt;
&lt;li&gt;The duration of the current flow&lt;/li&gt;
&lt;li&gt;The frequency&lt;/li&gt;
&lt;li&gt;The degree of moisture of the Skin&lt;/li&gt;
&lt;li&gt;The surface area of contact&lt;/li&gt;
&lt;li&gt;The pressure exerted and temperature&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Basic overview&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In DC installation, circuit has a certain &lt;strong&gt;Resistance&lt;/strong&gt; &lt;/li&gt;
&lt;li&gt;In Ac installation, the correct term of resistance is &lt;strong&gt;Impedance&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When talking of AC, the impedance(Z) is the product of Resistance(R), the inductive resitance(XL) and the capacitive resitance (Xc)&lt;/p&gt;

&lt;p&gt;In Human bodies, body impedance may vary for person to person. At 400V AC 50/60 Hz, hand to hand current path, dry condition and large contact area, the average impedance is &lt;strong&gt;950ohms&lt;/strong&gt;. 5% of people it will be &lt;strong&gt;700ohm or less&lt;/strong&gt;. 5% of people it will be &lt;strong&gt;1275ohms or more&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F72l3lxk5rb4qq23aekbc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F72l3lxk5rb4qq23aekbc.png" alt="Image description" width="800" height="147"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Path of the current:&lt;/u&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdlfl1bzp4wj3l1c80ebc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdlfl1bzp4wj3l1c80ebc.png" alt="Image description" width="800" height="472"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Impact of touch voltage:&lt;/u&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn79v0f0j18utv31g955y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn79v0f0j18utv31g955y.png" alt="Image description" width="800" height="422"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Humidity:&lt;/u&gt;&lt;br&gt;
Moisture reduces the impedance incase of electrical contact. So wet hands leads to more impact of electrical current flow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5c4tr27cqoleq6jxyrpp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5c4tr27cqoleq6jxyrpp.png" alt="Image description" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Area of contact:&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Large contact surface of 10000 mm2 (10x10cm) - low impedance&lt;/li&gt;
&lt;li&gt;Medium contact surface 1000 mm2 (3.1x3.1cm) - Medium  impedance&lt;/li&gt;
&lt;li&gt;Small contact surface 100 mm2 (1x1cm) - high impedance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If we use ohmmeter with probe, body impedance from hand to hand, the value will be between &lt;strong&gt;100,000 to 2000 000 Ohms&lt;/strong&gt;. This is due to Skins high impedance. It decreases quickly once a current flows through. Without Skin the impedance of the body is much lower. More info: DIN IEC TS 60479 -1.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Frequency&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F20tq3sdctrcnu7co0uo9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F20tq3sdctrcnu7co0uo9.png" alt="Image description" width="800" height="407"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Amount of Energy:&lt;/strong&gt;&lt;br&gt;
According to the standard DIN IEC TS 60479 -1, &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The current  and duration of current flow through the body is decisive for injuries. Current depends on voltage and Impedance of circuit. Time depends on whether the installation disconnects automatically.(Circuit breakers are slow in reaction but RCD interrupt the circuit at max 300ms)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The amount of energy is calculated&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;I2(Current) * Time = Energy&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As the current is the indicator of electrical shock, the effects can be,&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Perecption threshold - &amp;lt; 0.5mA&lt;/li&gt;
&lt;li&gt;Reaction threshold - &amp;lt; 0.5mA&lt;/li&gt;
&lt;li&gt;Release threshold - &amp;lt; 5mA&lt;/li&gt;
&lt;li&gt;Ventricular fibrillation &amp;amp; unconsciousness thresholds - &amp;gt;30-40mA&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Effects of Current on Human beings and livestock:&lt;/strong&gt;&lt;br&gt;
As per IEC,&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&amp;lt; 0.5mA can be tolerated for long time. Slight tingling can be felt&lt;/li&gt;
&lt;li&gt;0.5mA to 200mA - Increase in BP, muscle spasms and involuntary muscle reactions

&lt;ul&gt;
&lt;li&gt;Upto 5mA can be tolerated for long time&lt;/li&gt;
&lt;li&gt;30 mA approximately 200ms&lt;/li&gt;
&lt;li&gt;Upto 200mA duration less than 10ms&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;200mA to 500mA - Strong muscle reactions, difficulty in breathing, distruption of the heart rhythm. Furthermore as it is above release threshold, unable to let go off the power source due to lack of muscle control&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;500mA to 10000mA - life threatening area. Cardiac arrest/Ventricular fibrillation, hyperinflation of lungs, burns and other injuries&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr8edd1a6krdrs7kal6lm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr8edd1a6krdrs7kal6lm.png" alt="Image description" width="800" height="524"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Secondary effects is injuries that occur after an electrical shock. For example Fell of a ladder after shock leads to Broken bones.&lt;br&gt;
Aware of following&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Possible fall/an unstable platform&lt;/li&gt;
&lt;li&gt;Injuries due to sharp edges&lt;/li&gt;
&lt;li&gt;Loss of tools/equipment&lt;/li&gt;
&lt;li&gt;Head injuries&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Short circuit:&lt;br&gt;
European standard describes electrical arc flash as rare events. But when this occurs, the consequences are severe. This may occur because of loss of tools, malfunction of electrical devices and etc. So wear arc protection cloths and take protective measures against arcs.&lt;/p&gt;

&lt;p&gt;Railway overhead lines in germany operated at 15kV. Safe distance is 3m.&lt;br&gt;
Electrical accident example is shown of loosing multiple fingers. The person is an electrician and have performed the work several times. As he did not follow the rules, it leads to fatal damage. 1 or 1million in Germany. 1 of 1.1million in US&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;u&gt;Section 4: Basic Principles of Electrical Safety&lt;/u&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;u&gt;&lt;strong&gt;Levels of Responsibility:&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The person responsible for electrical safety - Employer/Owner

&lt;ul&gt;
&lt;li&gt;Overall responsibility of safe operation&lt;/li&gt;
&lt;li&gt;Establish the rules and organization framework&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;The nominated person in control of an electrical installation during work activities - Professional with high level of electrical knowledge.

&lt;ul&gt;
&lt;li&gt;Responsible for safe operation of electrical installation of work activities&lt;/li&gt;
&lt;li&gt;Professionally qualified to access how work must be carried &lt;/li&gt;
&lt;li&gt;Higher electrical qualification than the electrician.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;The nominated person in control of the work activity - Foreman of work

&lt;ul&gt;
&lt;li&gt;Responsible for the safety of all individuals involved including people that are near to electrical installation&lt;/li&gt;
&lt;li&gt;Tasked to oversee all activities&lt;/li&gt;
&lt;li&gt;Ensure the operations are performed according to safety regulation.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Skill levels:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Low --&amp;gt; Ordinary person&lt;/li&gt;
&lt;li&gt;Medium --&amp;gt; Instructed person (EuP)&lt;/li&gt;
&lt;li&gt;High  --&amp;gt; Skilled person (EFK)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Safe operation &amp;amp; Risk Assessment:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Safe Operation:&lt;/u&gt;&lt;br&gt;
Basic rule is to ensure safe opertion. Therefore prior to work activity, risk assessment  must take place&lt;/p&gt;

&lt;p&gt;This evaluation must identify hazards if any and call for appropriate safety measures and precautions for safety of workers and equipment&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Risk Assessment&lt;/u&gt;&lt;br&gt;
Before work, all should agree on tasks to be done and necessary precautions. What may happen?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;flow of current through the body&lt;/li&gt;
&lt;li&gt;Short circuit with direct or indirect consequences&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Risk Assessment process&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwlm51eu3m1s7nhv986f5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwlm51eu3m1s7nhv986f5.png" alt="Risk_Assessment_Process" width="800" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Personnel:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Competence requirement:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd3isghej7p7b2vmxp0vo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd3isghej7p7b2vmxp0vo.png" alt="Competence_requirements" width="546" height="334"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Requirements for Personal Protective equipment&lt;/li&gt;
&lt;li&gt;Instruction requirements&lt;/li&gt;
&lt;li&gt;Habits and Behavior at work&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Organization&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;u&gt;Responsibility of electrical installation&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Basically this is the owner&lt;/li&gt;
&lt;li&gt;or CEO of company&lt;/li&gt;
&lt;li&gt;when owner unable to provide risk assessment, person with sufficient qualification must be called in.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Delegation of responsibility&lt;/u&gt;&lt;br&gt;
&lt;u&gt;Two or more installation and/or Entrepreneurs&lt;/u&gt;&lt;br&gt;
&lt;u&gt;The access to Electrical hazardous areas&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Access control&lt;/li&gt;
&lt;li&gt;Sign board&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Competence of skilled person&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Communication&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Communication can be passed orally or by written and using any communication devices in a clear and reliable manner&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;The work location&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;u&gt;Site preparation&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Adequate working space&lt;/li&gt;
&lt;li&gt;Access&lt;/li&gt;
&lt;li&gt;Lighting&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Non electrical hazards&lt;/u&gt; - Precaution&lt;br&gt;
&lt;u&gt;Flammable materials&lt;/u&gt; - To be kept away&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Tool, equipment and devices&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;&lt;u&gt;Drawing, Records and Signs&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;&lt;u&gt;Emergency arrangements&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fv2dt1s0q36jqqq030141.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fv2dt1s0q36jqqq030141.png" alt="Annex_B7" width="800" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F88wlcj2m83hf514yec33.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F88wlcj2m83hf514yec33.png" alt="Annex_B7_Detail" width="800" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Review questions:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp9oy2g1ytenkwkg1777b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp9oy2g1ytenkwkg1777b.png" alt="Image description" width="792" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs2tlh37dscesbol6jw6n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs2tlh37dscesbol6jw6n.png" alt="Image description" width="732" height="444"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F62l9scyprn6di4nqh3tu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F62l9scyprn6di4nqh3tu.png" alt="Image description" width="786" height="444"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt; Section 5: Operational Procedures&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;(Operating Activities, Measurement, Testing and Inspection)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;This section deals with the requirements of DIN VDE 0105-100 regarding the operation of electrical installations&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;This includes switching operations, functional Tests/Measurements, testing and inspection&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;General:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
When working near or on electrical installation, you must use appropriate tools and equipment to protect against Hazards.&lt;/p&gt;

&lt;p&gt;Before the work is started, it must be approved by&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The person responsible for electrical installation or&lt;/li&gt;
&lt;li&gt;The nominated person in control of the electrical installation during work activities&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After the completion of work, it must be informed to&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The person responsible for electrical installation or&lt;/li&gt;
&lt;li&gt;The nominated person in control of the electrical installation during work activities.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Operating Activities&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Operating activities are designed &lt;u&gt;to change the electrical state of an electrical installation&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;This is divided into&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Daily use operations intended to modify electrical state without risks (Connect/Disconnect, Start/Stop)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Skilled or instruction person are allowed&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Safety operation intended to disconnect or reconnect the installation incase of work on or near electrical installation&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Skilled(EFK) or instructed(EuP) person only allowed to do this&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Functional checks, Measurement&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Functional checks and measurment can be performed only by EuP or EFK&lt;/li&gt;
&lt;li&gt;Ordinary persons are only allowed to carry out under the supervision of Skilled person(EFK)&lt;/li&gt;
&lt;li&gt;Skilled person must learn what? How? Where? what to measure?&lt;/li&gt;
&lt;li&gt;Slightest doubt, nominated person in conrl of the electrical installation during work activities must be contacted.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Safe Instrucments&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Only approved, permitted tools must be used when working on electrical installation. Instruments should comply DIN EN61010-1 (VDE 0411-1).&lt;/p&gt;

&lt;p&gt;Risk of accidents due to Measurments must be taken into consideration.&lt;br&gt;
Internal resistance of a meter must be taken care.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2kmmet3hnp904ssqooyb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2kmmet3hnp904ssqooyb.png" alt="Ensuring_Safety_measuring" width="661" height="504"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Whenever there is a risk of direct contact with uninsulated live parts, PPE to protect against electric shock, short circuits or arcs must be used.&lt;/li&gt;
&lt;li&gt;As long as the installation is classified as fully IP2X or better, wearing rubber gloves or appl insulating covers is not mandatory&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Testing Qualifications&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Testing includes to check the operation of electrial, mechanical or thermal condition of installation.&lt;/li&gt;
&lt;li&gt;It also include measurment activities accordance with the regulations measurement. only EuP or EFK allowed to carry out this.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Dead State Testing:&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6r4i5ttnuebp8xtb86ub.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6r4i5ttnuebp8xtb86ub.png" alt="Dead_State_Testing" width="578" height="526"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Inspections&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvnd1u4vl6jcue9b33y0x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvnd1u4vl6jcue9b33y0x.png" alt="Inspections" width="800" height="396"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It may include&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Visual examination&lt;/li&gt;
&lt;li&gt;Measuring and/or testing in accordance with the requirements of measurments and tests&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This must be carried out with regard to the current electrical drawings and specifications.&lt;/p&gt;

&lt;p&gt;Skilled person with experience in inspection are allowed to carry out. This is carried out to protect the personnel from hazards, considering the constraints imposed by the presence of bare live parts.&lt;/p&gt;

&lt;p&gt;Results of inspection must be recorded as per national and local law. If necessary appropriate remedial action shall be taken.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Recurring inspection&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Periodic inspection is required&lt;/li&gt;
&lt;li&gt;It can be for random samples.&lt;/li&gt;
&lt;li&gt;Scope and results of the periodic inspection of an installation shall be recorded in an inspection reports.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Review:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwqqzshljux1m1hl9xq4w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwqqzshljux1m1hl9xq4w.png" alt="Quiz1" width="800" height="351"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmx1mcz76u033dsjg9e2w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmx1mcz76u033dsjg9e2w.png" alt="Quiz2" width="800" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxfx19fqeb3z4imxchn5i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxfx19fqeb3z4imxchn5i.png" alt=" Quiz3" width="800" height="482"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi4f9pv1y6fgiq625bsid.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi4f9pv1y6fgiq625bsid.png" alt="Quiz4" width="800" height="454"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;u&gt;Section 6 Working Procedures General Aspects&lt;/u&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;This section describes the general rules that must be observed in the specific work methods for dead working, live working and working in the vicinity of live parts.&lt;/p&gt;

&lt;p&gt;This section is divided into three parts&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;General Requirements&lt;/li&gt;
&lt;li&gt;Requirements incase of induced voltages&lt;/li&gt;
&lt;li&gt;Requirements in case of weather conditions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;u&gt;Safe operation Risk assessment:&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3llwhc2ytog6bjva0ern.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3llwhc2ytog6bjva0ern.png" alt="SafeOperation_RiskAssessment" width="654" height="569"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Responsibility and Authority:&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;Only the nominated person in control of the electrical installation during work activities is authorized to issue or withdraw a permit of the planned work&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2emty2iu314s2hnl81fm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2emty2iu314s2hnl81fm.png" alt="Responsi_Authority " width="545" height="310"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Working Methods&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There are three different working methods&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Dead working&lt;/li&gt;
&lt;li&gt;Live working&lt;/li&gt;
&lt;li&gt;Working in the vicinity of live parts&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Regardless of methods above, protection against shock, short cicuit and arcing must be taken&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4xk23973d5kvdcyo60yb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4xk23973d5kvdcyo60yb.png" alt="WOrking_Methods" width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fygxrtjr7mxn4xnkiezgn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fygxrtjr7mxn4xnkiezgn.png" alt="Working_Methods_Dead_Live" width="800" height="387"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Specific requirements if risk of induction&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flubz97ldxo1bwozb41z7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flubz97ldxo1bwozb41z7.png" alt="Risk_Induction" width="800" height="397"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Specific requirements incase of weather condition&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Unfavorable environment conditions may cause limitations to the commencement of continuation of work. Example are&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lightning&lt;/li&gt;
&lt;li&gt;Heavy rain&lt;/li&gt;
&lt;li&gt;Thick fog&lt;/li&gt;
&lt;li&gt;Strong winds&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In case of weather related interruptions, nominated person in control of the electrical installation during work activities must be informed.&lt;/p&gt;

&lt;p&gt;Insufficient visibility condition, no work should be started and all work activities in progress must be stopped after securing the work location.&lt;/p&gt;

&lt;p&gt;Review:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl1vx7s1he2b5h72p87de.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl1vx7s1he2b5h72p87de.png" alt="Q1" width="800" height="316"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuf29az6q4p47q6pcr6o6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuf29az6q4p47q6pcr6o6.png" alt="Q2" width="800" height="344"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk7gtds9dlru2kuj6vhjc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk7gtds9dlru2kuj6vhjc.png" alt="Q3" width="800" height="348"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;u&gt;Section 7: Dead working Procedure&lt;/u&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9aj7r4mlgndp37xa5zzx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9aj7r4mlgndp37xa5zzx.png" alt="Dead_Working_Procedure_1" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In order to avoid electrical hazards, comply with &lt;strong&gt;Five safety rules&lt;/strong&gt;. Prior to starting up work the following must be identified and understood&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The workplace&lt;/li&gt;
&lt;li&gt;the electrical system&lt;/li&gt;
&lt;li&gt;the associated sources of danger and hazards.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;The five safety rules:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fir341qymrzc989thfttv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fir341qymrzc989thfttv.png" alt="Disconnect_Completely" width="800" height="223"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9f11oihtnhuz206bci4j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9f11oihtnhuz206bci4j.png" alt="Secure_Against_Reconnection" width="800" height="218"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Falktbnhsfj9gv19432h2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Falktbnhsfj9gv19432h2.png" alt="Verify_Absence_Voltage" width="800" height="211"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft77t3sdehmy0vj56xrdu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft77t3sdehmy0vj56xrdu.png" alt="Carry_Out_earthing_Short_Circuiting" width="800" height="247"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1thohwogcvwm4k5l1ig.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1thohwogcvwm4k5l1ig.png" alt="Provide_Protection_against_liveparts" width="800" height="251"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When the five safety rules are carried out by an instructed person, the person must be given the following instructions in detail&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What must be disconnected?&lt;/li&gt;
&lt;li&gt;How must the installations be secured against reconnection?&lt;/li&gt;
&lt;li&gt;On which precise circuits and terminals must the absence of voltage be measured/Determined?&lt;/li&gt;
&lt;li&gt;How and on which component must the earthing clamps be mounted?&lt;/li&gt;
&lt;li&gt;Which live parts need to be covered, how should they be covered, and possible other actions to ensure protection against accidental contact?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Review&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3wp9d04k6tvsfn74yeba.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3wp9d04k6tvsfn74yeba.png" alt="Qu1" width="778" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fijcpkobmdy6aqf3ktpvo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fijcpkobmdy6aqf3ktpvo.png" alt="Qu2" width="799" height="347"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6h1mlpopv7grnrj8p07r.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6h1mlpopv7grnrj8p07r.png" alt="Qu3" width="777" height="425"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxpfb3as34purrz0jfbsi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxpfb3as34purrz0jfbsi.png" alt="Qu4" width="781" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt; Section 8: Live Working&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;Here we cover live working: That is any work that is performed on liveparts or inside the live working zone of installation.&lt;/p&gt;

&lt;p&gt;Definition:&lt;br&gt;
All work in which a worker deliberately makes contact with live parts or reaches into the live working zone with either parts of his body or with tools, equipments or devices being handled&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Introduction:&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Low voltage - work is considered as live working when getting in direct contact with live parts&lt;/li&gt;
&lt;li&gt;&lt;p&gt;High voltage - All work in live working zone must be treated as live work, regardless of whether there is contact with liveparts or not.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Live working involves an increased risk of &lt;u&gt;Short circuiting and electric shock&lt;/u&gt;. With proper safety rules adherence, work can be performed without incidents&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Comparted to dead working zone, there is greater likelihood of an incident occuring when working live&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Highest priority must therefore beto comply with all safety regulations.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Dead working or working in the vicinity of live parts is perferred working method.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The decision to work live cannot be made by the employee alone. Your company as well as your customer must be involved. Hopefully they will not want to take the risk associated with live working. The follwing risks are,&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Injuries to personnel&lt;/li&gt;
&lt;li&gt;Damages to equipment&lt;/li&gt;
&lt;li&gt;Electric arcs, explosions and&lt;/li&gt;
&lt;li&gt;Downtime nd rebuilding&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;u&gt;Regulations:&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Live working must be carried out in accordance with national regulations.&lt;/li&gt;
&lt;li&gt;National regulations or additions apply prior to European standard DIN EN 501110. In Germany DIN VDE 0105-100:2015 as well as the DGUV regulations (German social accident insurance) apply before the Eurepean Standard.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Safety precautions&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Check the national requirements first.&lt;/li&gt;
&lt;li&gt;DIN EN 50110-2 National annexes contains snapshot of the regulations of the different countries at the time when the annexus were edited.&lt;/li&gt;
&lt;li&gt;risk assessment must be peformed &lt;/li&gt;
&lt;li&gt;All type of possible hazards must be identified and evaluated in relation to probability and severity
Eg:

&lt;ol&gt;
&lt;li&gt;THe voltage level&lt;/li&gt;
&lt;li&gt;The short circuit energy&lt;/li&gt;
&lt;li&gt;The insulation level of the installation&lt;/li&gt;
&lt;li&gt;The nature of the work and the work site&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Voltage level&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F62yvh8cyaozm0v5z5m7q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F62yvh8cyaozm0v5z5m7q.png" alt="Voltage_Level" width="723" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9g0uxso8l55gz9o8x760.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9g0uxso8l55gz9o8x760.png" alt="Voltage_Level1" width="722" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Short circuit level&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0eogr0z5qq7a8ti8m1n9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0eogr0z5qq7a8ti8m1n9.png" alt="Short Circuit level" width="758" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Low voltage installations:&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Identifying and evaluating the electrical hazards of the electrical installation in essential prior to live work.&lt;/p&gt;

&lt;p&gt;Resp: Person responsiblie for the EI during work activities.&lt;/p&gt;

&lt;p&gt;Electrical installation can be divided into&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Extra low voltage&lt;/li&gt;
&lt;li&gt;Low voltage without dangerous short circut current.&lt;/li&gt;
&lt;li&gt;Low voltage with dangerous short circut current.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Extra low voltage installations:&lt;br&gt;
When SELV installations, work can be carried out without protection against direct contact with live parts. However precautions must be taken to protect against short circuit.&lt;/p&gt;

&lt;p&gt;Low voltage installations:()incl FELV &amp;amp; PELV&lt;br&gt;
For installations protected against short cirucits, overload, the below requirements apply&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;insulation of adjacent live parts&lt;/li&gt;
&lt;li&gt;Use of insulated tools&lt;/li&gt;
&lt;li&gt;Use of appropriate PPE&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Low voltage with dangerous SC current:&lt;br&gt;
Small short circuit (&amp;lt;2kA) may be dangerous. Neither DIN VDE 0105-100 nor DIN EN 50110-1 describe whe SC is dangerous. The requirement is&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;THe risk of short cirucuit must be calculated according to DIN EN 61482, NFPA 70E or IEEE 1584&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Decision process:&lt;/p&gt;

&lt;p&gt;&lt;u&gt;No1:&lt;/u&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6pmxw039tqajezsw02gf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6pmxw039tqajezsw02gf.png" alt="No1" width="734" height="369"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;No2:&lt;/u&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F38evj72f41bywi7g266c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F38evj72f41bywi7g266c.png" alt="No2" width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi0vknj3pnobvpq5fab60.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi0vknj3pnobvpq5fab60.png" alt="DP2" width="759" height="421"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;No3:&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwrp5jypsirwq8s81dqye.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwrp5jypsirwq8s81dqye.png" alt="DP3" width="800" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.1:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faopk2zpkzqjsaekbkvwx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faopk2zpkzqjsaekbkvwx.png" alt="631" width="800" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnk32ycydcwyfawqa85wc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnk32ycydcwyfawqa85wc.png" alt="631_1" width="800" height="462"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.2 Specific Training and Qualification&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Special training must be setup. The training must include&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Theoretical exercise&lt;/li&gt;
&lt;li&gt;Practical exercise
These exercise must be tailored to the work to be done after training.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Table 5 of DGUV regulation 3 has list of live work allowed&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc8cmrcphux213rqk1a58.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc8cmrcphux213rqk1a58.png" alt="Table5_1" width="800" height="558"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F04qwxwqur7524lps63pv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F04qwxwqur7524lps63pv.png" alt="Table5_2" width="800" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The person responsible for the installatin during work activities must confirm the level and ablity to perform live work with certificate of competence.&lt;/p&gt;

&lt;p&gt;Certificate example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4zq0dj31qcgwj5g6thjr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4zq0dj31qcgwj5g6thjr.png" alt="Certificate" width="800" height="415"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.3 Maintaining personal skills for live working&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
The ability to carry out live work safely must be maintained&lt;br&gt;
. An ongoing practical routine&lt;br&gt;
. A new training&lt;br&gt;
. A refersher training&lt;/p&gt;

&lt;p&gt;The person responsible for the installation during work activities assess all certificates atleast anually.&lt;/p&gt;

&lt;p&gt;DIN VDE 0105-100 recommends repeating the thery and practical instruction for every four years.&lt;/p&gt;

&lt;p&gt;Also skill, health checks, qualification of employees  must be checked.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.4 Working methods&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcvocrspv5bc01w352uu4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcvocrspv5bc01w352uu4.png" alt="634" width="689" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.5 Working conditions&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzlwcp3rc3acewby3n0kw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzlwcp3rc3acewby3n0kw.png" alt="Working_Conditions" width="800" height="402"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.6 Tools, equipments and devices&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff4g48fssavy0mvube49w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff4g48fssavy0mvube49w.png" alt="636" width="800" height="399"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.7 Environmental conditions&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F56exf2aws9cyzzjtwxt0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F56exf2aws9cyzzjtwxt0.png" alt="Image description" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;6.3.8 Organization of work&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp7rdnpahomk2gwgamdem.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp7rdnpahomk2gwgamdem.png" alt="638" width="800" height="368"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt; Section 9: Working in the vicinity of live installations &lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;Live working zone and the vicinity zone&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0vzxnoiruihhueocrbr7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0vzxnoiruihhueocrbr7.png" alt="Liveworking" width="800" height="409"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The zones at low voltage:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fadf1ruh1037y3x5wtdct.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fadf1ruh1037y3x5wtdct.png" alt="LVZone" width="800" height="401"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The zones at high voltage:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjjxtspy9152pzzpe0upy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjjxtspy9152pzzpe0upy.png" alt="HVZone" width="800" height="388"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Definition of working in the vicinity of live parts:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftu90x312wetqkl0rc7v7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftu90x312wetqkl0rc7v7.png" alt="Def1" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;General aspects:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F44ugwdll3bcp1q7qqqx9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F44ugwdll3bcp1q7qqqx9.png" alt="GeneralAspects" width="800" height="577"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Preventing access to the work location:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fclnpt1e3siox5a109i2h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fclnpt1e3siox5a109i2h.png" alt="PreventAccess" width="800" height="384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt; Section 10: Maintanance Procedures &lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;u&gt;General:&lt;/u&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsa7f1n7fvz5rlrfkavw8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsa7f1n7fvz5rlrfkavw8.png" alt="Main_General " width="763" height="454"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Personnel:&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Maintanance - Planned and approved by &lt;u&gt;the nominated person in control of electrical installation during work activities&lt;/u&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;when doing maintanance on or near to electrical installation, the following points must be clearly defined&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The relevant part of installation to be worked &lt;/li&gt;
&lt;li&gt;The person responsible for maintenance often nominated person in control of work activity&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  1. must be a skilled or instructed person

  2. must be qualified to perform the work

  3. appropriate tools and measurement equipment and PPE must be used
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;u&gt;Repair work&lt;/u&gt;&lt;br&gt;
It consists of following stages&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Fault localization&lt;/li&gt;
&lt;li&gt;Troubleshooting and/or replacement of parts&lt;/li&gt;
&lt;li&gt;Recommisioning of repaired part&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Different working procedure for different stage might be required.&lt;/p&gt;

&lt;p&gt;For troubleshooting - carried out based on dead working, live working, working in vicinity of live parts&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpwqquoc4kkdrjbasqeee.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpwqquoc4kkdrjbasqeee.png" alt="Repairwork " width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Replacement of fuses:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi3k15t2xhbj1955am0vc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi3k15t2xhbj1955am0vc.png" alt="Replacement_Fuses" width="800" height="430"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7fgjtuh1rpsvn0wjibeg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7fgjtuh1rpsvn0wjibeg.png" alt="ReFuses" width="800" height="448"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt; Section 11: First Aid for Electrical Accidents &lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp39p1osowc2294k6089g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp39p1osowc2294k6089g.png" alt="FirstAId" width="800" height="412"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Electrical Accidents&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvo3to35kb46ztp6uljcq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvo3to35kb46ztp6uljcq.png" alt="Electric_Accidents " width="797" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>safety</category>
    </item>
    <item>
      <title>Python - First Week</title>
      <dc:creator>Suresh S</dc:creator>
      <pubDate>Thu, 11 Jul 2024 21:23:33 +0000</pubDate>
      <link>https://dev.to/sureshlearnspython/python-first-week-1bbl</link>
      <guid>https://dev.to/sureshlearnspython/python-first-week-1bbl</guid>
      <description>&lt;p&gt;Python is taught online in Tamil without any cost. The only expectation from them is to create a blog and write our understanding after learning. Hence started writing the blog.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Started Learning python through Kaniyam. Got to know about two Tamil people Syed and Srini. Classes will be for Monday to Wednesday at 7pm to 8pm&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;WhatsApp group was created and 3 classes completed. Agenda for every class is clear. During the class Zoom Recording and YouTube Live both were made which is useful for Checking it again.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://kaniyam.com/python-course-2024/" rel="noopener noreferrer"&gt;https://kaniyam.com/python-course-2024/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://parottasalna.com/python-development/" rel="noopener noreferrer"&gt;https://parottasalna.com/python-development/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I have already installed Python and VS code available in my laptop. Find little difficult to understand running the sample program via Terminal and from Vscode. After few tries it is little clear now. So environment is made available for the class.&lt;/p&gt;

&lt;p&gt;Lot of free ebooks are available to learn python other than youtube videos. Recommended book links are as below&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Day 1: Meet and Greet:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Agenda:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Why Python ?&lt;/li&gt;
&lt;li&gt;Course Syllabus&lt;/li&gt;
&lt;li&gt;Python Installation - Windows, Linux&lt;/li&gt;
&lt;li&gt;Collab Notebook&lt;/li&gt;
&lt;li&gt;Where to see updates &amp;amp; recordings.&lt;/li&gt;
&lt;li&gt;Where to ask questions ?&lt;/li&gt;
&lt;li&gt;Our Expectations&lt;/li&gt;
&lt;li&gt;Basic Print Command&lt;/li&gt;
&lt;li&gt;About FOSS, FOSS Communities.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Post session, the below information is shared&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Youtube Recording:&lt;/u&gt; &lt;br&gt;
    Part 1: &lt;a href="https://www.youtube.com/live/rcJRkt3odlw?si=SZGCr6aBVwSQII0g" rel="noopener noreferrer"&gt;https://www.youtube.com/live/rcJRkt3odlw?si=SZGCr6aBVwSQII0g&lt;/a&gt;&lt;br&gt;
    Part 2: &lt;a href="https://www.youtube.com/live/xBpXOkyoFD8?si=Z89W5VAtLnkUpFHH" rel="noopener noreferrer"&gt;https://www.youtube.com/live/xBpXOkyoFD8?si=Z89W5VAtLnkUpFHH&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;How to create a blog: &lt;/u&gt;&lt;br&gt;
    &lt;a href="https://www.youtube.com/watch?v=pkp8WK9ub4o" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=pkp8WK9ub4o&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Google Form to submit your blog url:&lt;/u&gt;&lt;br&gt;
    &lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSdiJ3qQ-37YSi2VnTFpgVIJL0iE9mxveKHA3kFnwVAmhJooMg/viewform?usp=sf_link" rel="noopener noreferrer"&gt;https://docs.google.com/forms/d/e/1FAIpQLSdiJ3qQ-37YSi2VnTFpgVIJL0iE9mxveKHA3kFnwVAmhJooMg/viewform?usp=sf_link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Whatsapp Group Links:&lt;/u&gt; &lt;br&gt;
    Group 1: &lt;a href="https://chat.whatsapp.com/DcfvtLP0y6S0iUkjCJLcH7" rel="noopener noreferrer"&gt;https://chat.whatsapp.com/DcfvtLP0y6S0iUkjCJLcH7&lt;/a&gt;&lt;br&gt;
    Group 2: &lt;a href="https://chat.whatsapp.com/ErBIxb1lQfs7mNRo33c4Vc" rel="noopener noreferrer"&gt;https://chat.whatsapp.com/ErBIxb1lQfs7mNRo33c4Vc&lt;/a&gt;&lt;br&gt;
    Group 3: &lt;a href="https://chat.whatsapp.com/ETxQ9WVCXkp5TYmY22wLaC" rel="noopener noreferrer"&gt;https://chat.whatsapp.com/ETxQ9WVCXkp5TYmY22wLaC&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tamil Linux Forum Link:&lt;/strong&gt; (Ask Your Queries here)&lt;br&gt;
    &lt;a href="https://forums.tamillinuxcommunity.org/" rel="noopener noreferrer"&gt;https://forums.tamillinuxcommunity.org/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Community Links&lt;/strong&gt;&lt;br&gt;
    &lt;a href="https://forums.tamillinuxcommunity.org/t/gather-all-the-foss-group-in-tamil-nadu/1387" rel="noopener noreferrer"&gt;https://forums.tamillinuxcommunity.org/t/gather-all-the-foss-group-in-tamil-nadu/1387&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Python Download Link:&lt;/strong&gt;&lt;br&gt;
    &lt;a href="https://www.python.org/downloads/" rel="noopener noreferrer"&gt;https://www.python.org/downloads/&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Google Colab Link:&lt;/strong&gt;&lt;br&gt;
    &lt;a href="https://colab.research.google.com/" rel="noopener noreferrer"&gt;https://colab.research.google.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Day 2: Python Print&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Agenda:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;10 min discussion on previous class&lt;/li&gt;
&lt;li&gt;Basic print statement&lt;/li&gt;
&lt;li&gt;Multiple prints&lt;/li&gt;
&lt;li&gt;separator&lt;/li&gt;
&lt;li&gt;concatenating strings&lt;/li&gt;
&lt;li&gt;escape sequences&lt;/li&gt;
&lt;li&gt;raw string&lt;/li&gt;
&lt;li&gt;printing quotes inside strings.&lt;/li&gt;
&lt;li&gt;printing numbers&lt;/li&gt;
&lt;li&gt;multiline strings&lt;/li&gt;
&lt;li&gt;string multiplication&lt;/li&gt;
&lt;li&gt;combining int and str in printing&lt;/li&gt;
&lt;li&gt;.format&lt;/li&gt;
&lt;li&gt;f-strings&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Concepts are understood. Important links are&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Youtube Recording:&lt;/u&gt;&lt;br&gt;
    Session: &lt;a href="https://www.youtube.com/watch?v=zr3skBHzbAI&amp;amp;list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;index=4&amp;amp;pp=gAQBiAQB" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=zr3skBHzbAI&amp;amp;list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;index=4&amp;amp;pp=gAQBiAQB&lt;/a&gt;&lt;br&gt;
    Q/A: &lt;a href="https://www.youtube.com/watch?v=OWjW7GBMND4&amp;amp;list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;index=5&amp;amp;pp=gAQBiAQB" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=OWjW7GBMND4&amp;amp;list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&amp;amp;index=5&amp;amp;pp=gAQBiAQB&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Blog:&lt;/u&gt; &lt;a href="https://parottasalna.com/2024/07/05/python-fundamentals-the-print/" rel="noopener noreferrer"&gt;https://parottasalna.com/2024/07/05/python-fundamentals-the-print/&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Quiz:&lt;/u&gt; &lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSeW7dGCYrvPXBK7llexbwa_yImFQWFiHHE4c4ATOk-NwJWxIw/viewform?usp=sf_link" rel="noopener noreferrer"&gt;https://docs.google.com/forms/d/e/1FAIpQLSeW7dGCYrvPXBK7llexbwa_yImFQWFiHHE4c4ATOk-NwJWxIw/viewform?usp=sf_link&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Task:&lt;/u&gt; &lt;a href="https://parottasalna.com/2024/07/04/task-1-python-print-exercises/" rel="noopener noreferrer"&gt;https://parottasalna.com/2024/07/04/task-1-python-print-exercises/&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Playlist:&lt;/u&gt; &lt;a href="https://www.youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL" rel="noopener noreferrer"&gt;https://www.youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Colab Notebook:&lt;/u&gt; &lt;a href="https://colab.research.google.com/drive/1Uu9btRd_U0i3-PRfZwlR2QalJRp0DbBK?usp=sharing" rel="noopener noreferrer"&gt;https://colab.research.google.com/drive/1Uu9btRd_U0i3-PRfZwlR2QalJRp0DbBK?usp=sharing&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Infographics:&lt;/u&gt; &lt;a href="https://parottasalna.com/wp-content/uploads/2024/07/print-method.pdf" rel="noopener noreferrer"&gt;https://parottasalna.com/wp-content/uploads/2024/07/print-method.pdf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Byte of Python book is recommended. The link is'''&lt;/p&gt;

&lt;p&gt;&lt;a href="https://python.swaroopch.com/" rel="noopener noreferrer"&gt;https://python.swaroopch.com/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.tutorialspoint.com/python/index.htm" rel="noopener noreferrer"&gt;https://www.tutorialspoint.com/python/index.htm&lt;/a&gt;&lt;br&gt;
&lt;a href="https://python.swaroopch.com/" rel="noopener noreferrer"&gt;https://python.swaroopch.com/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://pymbook.readthedocs.io/" rel="noopener noreferrer"&gt;https://pymbook.readthedocs.io/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;'''&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Day 3:  Data types Variables and constants&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
Agenda:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Discussion on print quiz.&lt;/li&gt;
&lt;li&gt;Numeric Types (int, float, complex)
&lt;/li&gt;
&lt;li&gt;Text Type (strings)&lt;/li&gt;
&lt;li&gt;Boolean Type (bool)&lt;/li&gt;
&lt;li&gt;None Type (None)&lt;/li&gt;
&lt;li&gt;How to check a data type ?&lt;/li&gt;
&lt;li&gt;What is a variable ?&lt;/li&gt;
&lt;li&gt;How to define it &lt;/li&gt;
&lt;li&gt;valid, invalid variables&lt;/li&gt;
&lt;li&gt;assigning values&lt;/li&gt;
&lt;li&gt;multiple assignment&lt;/li&gt;
&lt;li&gt;unpacking&lt;/li&gt;
&lt;li&gt;variable types&lt;/li&gt;
&lt;li&gt;Constants&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;u&gt;&lt;strong&gt;Details shared&lt;/strong&gt;&lt;/u&gt;&lt;br&gt;
Print Quiz Solutions Video: &lt;a href="https://youtu.be/JzFLSZySbRI" rel="noopener noreferrer"&gt;https://youtu.be/JzFLSZySbRI&lt;/a&gt;&lt;br&gt;
Print Task Solutions: &lt;a href="https://youtu.be/k6pwbOZtQ30" rel="noopener noreferrer"&gt;https://youtu.be/k6pwbOZtQ30&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Variables Datatypes &amp;amp; Constants:&lt;/u&gt;&lt;br&gt;
     Session: &lt;a href="https://youtube.com/live/5G0PoJofxXk?feature=share" rel="noopener noreferrer"&gt;https://youtube.com/live/5G0PoJofxXk?feature=share&lt;/a&gt;&lt;br&gt;
     &lt;u&gt;Q/A&lt;/u&gt;: &lt;a href="https://youtube.com/live/9cJDqHwQG5k?feature=share" rel="noopener noreferrer"&gt;https://youtube.com/live/9cJDqHwQG5k?feature=share&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Blog:&lt;/u&gt; &lt;a href="https://parottasalna.com/2024/07/07/python-fundamentals-constants-variables-and-data-types/" rel="noopener noreferrer"&gt;https://parottasalna.com/2024/07/07/python-fundamentals-constants-variables-and-data-types/&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Quiz:&lt;/u&gt; &lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSezKyjHkKlg4Qo8juWqviZkasyWOcAcEcBzK_NsBwGYG3WAvg/viewform?usp=sf_link" rel="noopener noreferrer"&gt;https://docs.google.com/forms/d/e/1FAIpQLSezKyjHkKlg4Qo8juWqviZkasyWOcAcEcBzK_NsBwGYG3WAvg/viewform?usp=sf_link&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Task:&lt;/u&gt; &lt;a href="https://parottasalna.com/2024/07/07/task-2-constants-and-variables/" rel="noopener noreferrer"&gt;https://parottasalna.com/2024/07/07/task-2-constants-and-variables/&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Playlist:&lt;/u&gt; &lt;a href="https://www.youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL" rel="noopener noreferrer"&gt;https://www.youtube.com/playlist?list=PLiutOxBS1Mizte0ehfMrRKHSIQcCImwHL&lt;/a&gt;&lt;br&gt;
&lt;u&gt;Infographics:&lt;/u&gt; &lt;a href="https://parottasalna.com/wp-content/uploads/2024/07/variables-constants-and-data-types-in-python.pdf" rel="noopener noreferrer"&gt;https://parottasalna.com/wp-content/uploads/2024/07/variables-constants-and-data-types-in-python.pdf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There was a Q&amp;amp;A session planned by Srini and Syed today as there are many participants(11.07.2024 - Thursday)&lt;/p&gt;

&lt;p&gt;I told them that I will create a blog this weekend. Srini objected and said that postponing the activity will keep that delayed. Hence today I started writing  my first blog. &lt;/p&gt;

&lt;p&gt;For teaching Kids, below websites can be checked&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://code.org/" rel="noopener noreferrer"&gt;https://code.org/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://scratch.mit.edu/" rel="noopener noreferrer"&gt;https://scratch.mit.edu/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Other important links:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://kaniyam.com/ebooks" rel="noopener noreferrer"&gt;https://kaniyam.com/ebooks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.datacamp.com/tutorial/setting-up-vscode-python" rel="noopener noreferrer"&gt;https://www.datacamp.com/tutorial/setting-up-vscode-python&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I have asked two questions today.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Website link to teach kids?&lt;/li&gt;
&lt;li&gt;To know in detail about print function(like hovering over VSCODE on print provides detail) what I have to do?&lt;/li&gt;
&lt;li&gt;For the above I have to add some addons. those are &lt;strong&gt;Python&lt;/strong&gt; and &lt;strong&gt;Pylance&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;During the conversation Pandas also came which is a library for Excel data processing.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Also there was some interesting questions came about AI training using Python. It seems like with the available data, next prediction will happen like Regression LinearGraph.To know more about AI, &lt;strong&gt;We need to study the Book from Kaniyam&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;AI Libraries&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scifikit&lt;/li&gt;
&lt;li&gt;Tensorflow&lt;/li&gt;
&lt;li&gt;pytorch&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;To do:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go through the link or search on adding python, Pylance library to VScode&lt;/li&gt;
&lt;li&gt;Explore Pandas with the Ebook&lt;/li&gt;
&lt;li&gt;Read Byte of python till date&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>python</category>
      <category>basic</category>
    </item>
  </channel>
</rss>
