- 慎用小写字母l和大写字母O,因为它们可能被人看成数值1和0.
- 应使用小写的python变量名。
字符串
在python中,用引号括起来的都是字符串,其中的引号可以是单引号和双引号。
“This is a string” 'This is also a string'
首字母变大写
利用title方法实现
1 name = "aaron" 2 print(name.title())
在python中,用引号括起来的都是字符串,其中的引号可以是单引号和双引号。
“This is a string” 'This is also a string'
利用title方法实现
1 name = "aaron" 2 print(name.title())
相关文章: