Text Wrap | HackerRank
You are given a string and width .
Your task is to wrap the string into a paragraph of width .
Your task is to wrap the string into a paragraph of width .
Input Format
The first line contains a string, .
The second line contains the width, .
The second line contains the width, .
Constraints
Output Format
Print the text wrapped paragraph.
Sample Input 0
ABCDEFGHIJKLIMNOQRSTUVWXYZ
4
Sample Output 0
ABCD
EFGH
IJKL
IMNO
QRST
UVWX
YZ
Solution
port textwrap
def wrap(string, max_width):
wrapper=textwrap.TextWrapper(max_width)
wraplist=wrapper.wrap(text=string)
return '\n'.join(wraplist)
if __name__ == '__main__':
string, max_width = input(), int(input())
result = wrap(string, max_width)
print(result)
Comments
Post a Comment