Computer Science, asked by meghasarthak6, 3 months ago

if. String s=" New Delhi " toUpperCase()=


please answer it asap i am in hurry tomorrow is my exam​

Answers

Answered by prerna7313
1

I think your question is wrong in upper case the all small words convert to capital words and in lower case you get all small letter.

Explanation:

str="new delhi"

print (str.upper())

NEW DELHI

str="NEW DELHI"

print(str.lower())

new delhi

Similar questions