Computer Science, asked by aaravj65, 3 months ago

WAP to input a character and print it’s opposite case.
Example – If it is an upper case letter print it’s lower case and vice versa.

Answers

Answered by XxyourloverxX
7

Answer:

follow my first following id ....xd

Answered by Anonymous
0

Answer:

hello,

its using python

Explanation:

# program  to input a character and print it’s opposite case.

s=str(input("enter the string"))

if s.isupper():

   print("the required answer is: ")

   print(s.lower())

else:

   print("the required answer is: ")

   print(s.upper())

_______________________

hope it helps you

please mark brainliest

@ItzSnowySecret07

Similar questions