Pycharm中c、m、F、f、v、p分别代表什么含义

c代表Class:类
m代表Method:方法
F代表Function:函数
f代表Field:域
v代表Variable:变量
p代表Property:python内置函数
p代表Parameter:参数
<>代表Element:元素
Directory:目录
Package:包
Pycharm中c、m、F、f、v、p分别代表什么含义
Python中函数(Function)和方法(Method)的区别:

与类和实例无绑定关系的function都属于函数(function);
与类和实例有绑定关系的function都属于方法(method)。