Python の upper、lower、capitalize ― 2021年01月08日 13時05分51秒
コードの生成などで、この三系統は頻繁に使うので、capitalize は結構便利。upper と lower で実装できるが、必要な度に実装し直すのも面倒。
% python3.7
Python 3.7.9 (default, Oct 3 2020, 01:27:45)
[Clang 8.0.1 (tags/RELEASE_801/final 366581)] on freebsd12
Type "help", "copyright", "credits" or "license" for more information.
>>> "abcDE".upper()
'ABCDE'
>>> "abcDE".lower()
'abcde'
>>> "abcDE".capitalize()
'Abcde'
最近のコメント