+ 4
Upper Case and Lower Case
For variable I put str but how do I make it so it says it’s not a string https://code.sololearn.com/cw63usZB5fDt/?ref=app
2 Antworten
+ 5
Input() returns string by default. So, you don't need to put str() to convert it a string.
If you want to accept texts only, you may try using isalpha() method with if-else statement.
0
s = "tExT";
u = s.toUpperCase()
d = s.toLowerCase()
in Java Script