Primary
str.upper() ⚬|Documentation|1st|20260106141912-00-⌔
Built-in Types — Python 3.14.2 documentation#str.upper
str.upper()Return a copy of the string with all the cased characters [4] converted to uppercase. Note that
s.upper().isupper()might beFalseifscontains uncased characters or if the Unicode category of the resulting character(s) is not “Lu” (Letter, uppercase), but e.g. “Lt” (Letter, titlecase).The uppercasing algorithm used is described in section 3.13 ‘Default Case Folding’ of the Unicode Standard.
Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •