Nested elements are elements that are placed within another element.
When an element is nested within another, all lines of the nested element will <em>inherit </em>the <em>properties </em>of the parent element.
Take for instance, the following HTML code
<em><p align = "center"> I am a <b>boy</b> </p></em>
In the above HTML code,
The bold element (i.e. <b>) is nested in the paragraph element (i.e. <p>)
The paragraph element is aligned center.
This means that, all elements in the paragraph element (including the <em>bold element</em>) will be centralized.
Hence, all lines of a nested element will <em>inherit </em>the properties of the parent element.
Read more about nested elements at:
brainly.com/question/22914599
Answer:
punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
def strip_punctuation(strWord):
for charPunct in punctuation_chars:
strWord = strWord.replace(charPunct, "")
return strWord
Explanation:
The function is defined with a single argument.
A for loop is ran to check each character of the the word.
If a punction mark is present as a character in the word, it is removed.
The same word is returned but without the punctuation marks.
(privatization) is your answer to this question you are asking