目录
1. 变量的命名及使用
- 变量名只能包含字母、数字和下划线。变量名可以字母或下划线打头,但不能以数字打头,例如,可将变量命名为message_1,但不能将其命名为1_message。
- 变量名不能包含空格,但可使用下划线来分隔其中的单词。例如,变量名greeting_message可行,但变量名greetingmessage会引发错误。
- 不要将Python关键字和函数名用作变量名,即不要使用Python保留用于特殊用途的单词。
- 变量名应既简短又具有描述性。例如,name比n好,student_name比s_n好,name_length比length_of_persons_name好。
- 慎用小写字母l和大写字母O,因为它们可能被人错看成数字1和0。
- 要创建良好的变量名,需要经过一定的实践,在程序复杂而有趣时尤其如此。
2. 字符串相关操作
- title( ) 以首字母大写的方式显示每个单词
input:
name = "ada lovelace"
print(name.title())
output:
Ada Lovelace
- lower( ) /upper( ) 将字符串改为全部大写或全部小写
input:
name = "Ada Lovelace"
print(name.upper())
print(name.lower())
output:
ADA LOVELACE
ada lovelace
- 使用 + 号拼接字符串
input:
first_name = "ada"
last_name = "lovelace"
full_name = first_name + " " + last_name
print(full_name)
output:
ada lovelace
- 使用制表符和换行符添加空白
input:
print("Python")
print("\tPython")
output:
Python
Python
-
同时剔除字符串前后两端的空白,可分别使用方法lstrip() 和strip()
input:
s = " python "
s1 = string.lstrip()
print(string1)
s2 = s1.strip()
print(s2)
output:
"python "
"python"
3. 整数
- Python中将带小数点的数称为浮点数
- str()用于把非字符串类型转换成字符串格式
来源:CSDN
作者:llllv2
链接:https://blog.csdn.net/weixin_45850921/article/details/103809847