Rumah > Soal Jawab > teks badan
str.lower()
字符串全小写。str.upper()
Rentetan adalah dalam semua huruf besar.
>>> str = 'my world, MY PYTHON'
>>> str.lower()
'my world, my python'
>>> str.upper()
'MY WORLD, MY PYTHON'
Cara membuat tali 每个单词首字母都大写
? 使 str = 'My World, My Python
'
仅有的幸福2017-06-28 09:25:09
Artikel rujukan: Isu berkaitan operasi rentetan Python
str.lower()
字符串全小写。str.upper()
字符串全大写。str.capitalize()
字符串首字母大写。str.title()
Huruf besar pertama setiap perkataan dalam rentetan.
>>> str = 'my world, MY PYTHON'
>>> str.lower()
'my world, my python'
>>> str.upper()
'MY WORLD, MY PYTHON'
>>> str.capitalize()
'My world, my python'
>>> str.title()
'My World, My Python'