Skip to content

Commit 92d5c15

Browse files
authored
Update Day_23.md
1 parent 680f34c commit 92d5c15

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Status/Day_23.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,18 @@ print(textwrap.fill(string,width))
122122
```
123123

124124
---
125+
python
126+
'''solution by : Prashanth
127+
'''
128+
from textwrap import wrap
129+
x = str(input(': '))
130+
w = int(input())
131+
z = list(wrap(x, w))
132+
for i in z:
133+
print(i)
134+
```
125135
136+
---
126137
# Question 97
127138
128139
### **Question**

0 commit comments

Comments
 (0)