Python Function Reference

upper
Return a copy of the string with all the cased characters converted to uppercase.
Python 3.13
str.upper()
Examples
Python 3.13
>>> 'hello'.upper()
'HELLO'