Skip to content

Commit 84c3b74

Browse files
author
Abdul Hannan (Kamrul)
authored
Update 100+ Python challenging programming exercises for Python 3.md
1 parent 7d06811 commit 84c3b74

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

100+ Python challenging programming exercises for Python 3.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,14 @@ for sentence in lines:
272272
print(sentence)
273273
```
274274

275+
My solution:
276+
```
277+
inp = input()
278+
ll = str(inp).split()
279+
pq = [l.upper() for l in ll]
280+
print(' '.join(pq))
281+
```
282+
275283
### Question 10
276284
Level 2
277285

0 commit comments

Comments
 (0)