A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this ...
公有变量(public variables),Python中没有特定标识的变量都是公有变量 保护变量,即以单下划线开头的变量,这类变量只有类实例和子类实例能访问,需通过类提供的接口进行访问,不能用from mdule import *导入 私有变量或方法名(private variables / method names),是以 ...