demo_ref_string_casefold2.py:
s = 'ß'#小语种,德语 print(s.lower()) print(s.casefold())
➜ begtut>python demo_ref_string_casefold2.py
ß
ss