热门
python-capitalize() 方法:将字符串的第一个字符转换为大写,其余字符转换为小写
例如:s=“hello, world!”print(s.capitalize()) # 输出 “Hello, world!”