Which function returns text in upper case?
Answers
Answered by
1
Answer:
The Excel UPPER function returns a upper-case version of a given text string.
Answered by
0
Suppose:
a = " abcdef "
print(a.upper())
# Output : ABCDEF
Similar questions