Answer:
How can line formatting be accomplished?
To format line spacing:
Select the text you want to format. Selecting text to format.
On the Home tab, click the Line and Paragraph Spacing command. A drop-down menu will appear.
Move the mouse over the various options. A live preview of the line spacing will appear in the document. Select the line spacing you want to use.
The line spacing will change in the document.
A warranty is a statement given by the manufacturer or other company
Answer:
so so sorry I don't know
Explanation:
hope fully you'll get the answer
We can define a word as a group of characters without a space between them. To find the words of the input string , w can use split(delimiter) which returns a list of strings which had the defined delimiter between them in the input string.
def countWords(string):
words = string.split(" ")
count = len(words)
return count
Here we set the delimiter as the space character, and returned the length of the words list. I split each step into its own line for readability, however the function could be one line:
return len(string.split())
Here, no delimiter is specified. If one isn't given, it will default to split at any whitespace, including space.