0
How to make a input string uppercase
Python python python python python
3 Antworten
0
Is easy, check my code.
https://code.sololearn.com/cUjBN0NCWFa1/?ref=app
0
$ç 2 people downvoted you for no reason,
- 1
Gurseerit ,
If you don't want to use upper API then below is the other way to do it. If your string has other than lowercase character then you have to manage it.
print(''.join([chr(ord(x)-32) for x in input()]))