answersLogoWhite

0

What else can I help you with?

Related Questions

What prevents hyphenated words from being split at the end of a line?

A non breaking hyphen.


What is used to keep the words like Mt McKinley all on one line?

To keep words like "Mt McKinley" on one line, a non-breaking space is typically used. In HTML, this can be represented as  , which prevents the browser from automatically breaking the line between the words. This ensures that the entire phrase remains intact and does not get split across lines in the display.


What is hyphenation in Microsoft words?

It puts hyphens into words when they are split over the end of one line and onto the next line.


What is a special character that prevents words from splitting if they are at the end of a line in office 2007?

nonbreaking space


What is an hyphenation in Microsoft Word?

It puts hyphens into words when they are split over the end of one line and onto the next line.


What is the hyphen that prevents two words separated by a hyphen from splitting at the end of a line?

Non-breaking hyphen


What is is a special type of hyphen that prevents two words separated by a hyphen from splitting at the end of a line?

Nonbreaking Hyphen


How to split a word list in VBS by line?

Just adding, being the asker, not sure how to make a description. I have a large word list, that is one word per line, is there a way to use the function split("") to separate a multi - line list?


How do you make a number line with decimals?

you first have to count buy 25 or in other words quarters when u split the number line into portions


What hyphen is a special type of hyphen that prevents two words separated by a hyphen from splitting at end of a line?

It Is A Special Hyphen


What is a non-breaking hyphen in MS 2010?

A non-breaking hyphen will keep the words together on the same line, and will not split them if one word doesn't have room to fit on the end of a line, but another does. The whole combination will be brought onto a new line. This ensures they will never be split. For some combinations of words that have hyphens, it is proper to always keep them on one line.


If input is asdfghjk then the output is kasdfghj?

line = raw_input("Enter the plaintext") line1=raw_input("Enter the plaintext ") line2=raw_input("Enter the plaintext ") split =len(line)/2.0 split=round(split, 0) split=int(split) line = line[split:] + line[:split] line = line.replace("E", "o") line = line.replace("O", "e") line = line.replace("YAR", "ray") line = line.replace("RAY", "yar") split =len(line2)/2.0 split=round(split, 0) split=int(split) line2 = line2[split:] + line2[:split] line2 = line2.replace("E", "o") line2 = line2.replace("O", "e") line2 = line2.replace("YAR", "ray") line2 = line2.replace("RAY", "yar") split =len(line1)/2.0 split=round(split, 0) split=int(split) line1 = line1[split:] + line1[:split] line1= line1.replace("E", "o") line1= line1.replace("O", "e") line1= line1.replace("YAR", "ray") line1= line1.replace("RAY", "yar") print line.lower() print line1.lower() print line2.lower()