盘点Python中的常用术语
1.注释:
行首有一特殊标志符号运行时告知编程忽略此行;使代码更易于阅读。
例如:
#这是一个注释 print("hello world") #print() 方法用于打印输出,python中最常见的一个函数
输出结果为:
立即学习“Python免费学习笔记(深入)”;
hello world
2.关键字:
编程语言中 具有特殊意义的词。
例如:
#使用keyword模块,可以输出当前版本的所有关键字import keyword#import() 函数用于动态加载类和函数 。如果一个模块经常变化就可以使用 import() 来动态载入。keyword.kwlist #在命令窗口中输出>>> import keyword>>> keyword.kwlist['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
3.数据类型:
将数据划分为不同的类别,数据所属的类别,即为数据类型。
标准数据类型
Python3 中有六个标准的数据类型:
Number(数字)
String(字符串)
List(列表)
Tuple(元组)
Set(集合)
Dictionary(字典)
Python3 的六个标准数据类型中:
不可变数据(3 个):Number(数字)、String(字符串)、Tuple(元组);
可变数据(3 个):List(列表)、Dictionary(字典)、Set(集合)。
4.对象:
Python中具有3个属性的数据值——唯一标识,数据类型和值。
(例如:你要踢球,球就是一个对象,球的大小,颜色,价格就是球的属性。)
5.Str(string):
字符串的数据类型。
例如:
#用type()查看数据类型a="abc"print(type(a),a)输出结果为:<class> abc</class>
6.字符:
例如:a,b,c,,1,2,3等单个符号。
7.Int(inetrger):
整数的数据类型。
例如:
a=1# a=int("123")print(type(a))输出结果:<class></class>
8.整型数据:
数据类型为int的对象,值为整数的数值。
例如:
a=1print(type(a))输出结果:<class></class>