Computer Science, asked by vyom12595, 10 months ago

Which function returns text in upper case?​

Answers

Answered by aadityaraj36
1

Answer:

The Excel UPPER function returns a upper-case version of a given text string.

Answered by DrNykterstein
0

Suppose:

a = " abcdef "

print(a.upper())

# Output : ABCDEF

Similar questions