Skip to content

Commit 7b9ab1d

Browse files
authored
Update Day_23.md
1 parent 2c70e1e commit 7b9ab1d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

Status/Day_23.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,18 @@ if __name__ == '__main__':
7373
```
7474
---------------------
7575

76+
```
77+
python
78+
'''Solution by: mishrasunny-coder
79+
'''
80+
import textwrap
81+
82+
string = input()
83+
width = int(input())
84+
85+
print(textwrap.fill(string,width))
86+
```
87+
7688
# Question 97
7789

7890
### **Question**
@@ -224,4 +236,4 @@ if __name__ == '__main__':
224236

225237
[***go to next day***](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/blob/master/Status/Day_24.md "Day 24")
226238

227-
[***Discussion***](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/issues/3)
239+
[***Discussion***](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/issues/3)

0 commit comments

Comments
 (0)