Text wrap in python - HackerRank solution
Solution for hackerRank problem Text wrap in python
Problem :
Function Description
Complete the wrap function in the editor below.
wrap has the following parameters:
- string string: a long string
- int max_width: the width to wrap to
string: a single string with newline characters ('\n') where the breaks should be
Input Format
0 < len(string) < 1000
0 < maxwidth < len(string)
Sample Input 0
ABCDEFGHIJKLIMNOQRSTUVWXYZ
4
Sample output 0
ABCD
EFGH
IJKL
IMNO
QRST
UVWX
YZ
Procedure
1. Start.
2. Initialize a list.
3. loop from 0 to length of string
=> If i is not equal to 0 and i % width =0
=> add new line character to list
=> else
=> append s[i] to the list.
4. Covert the list into string.
5. Print the converted string
6. End
Code :
import textwrap
def wrap(string, max_width):
s = []
for i in range(len(string)):
if(i%(max_width)==0)and(i!=0):
s+=["\n"]
s+=[string[i]]
a=''
return a.join(s)
if __name__ == '__main__':
string, max_width = input(), int(input())
result = wrap(string, max_width)
print(result)
Comments
Post a Comment