如何引入类python
引入类python的方法:
现有自定义类(Color.py)如下,类位于路径’/Users/chuxing/python/test’下:
classColor(object):
def__init__(self,red,green,blue):
self.red=red;
self.green=green;
self.blue=blue;
def__str__(self):
return'(%s,%s,%s)'%(self.red,self.green,self.blue);
在另一个类Food.py中需要使用Color类,Food.py内容如下:
importsys;
sys.path.append('/Users/chuxing/python/test');
fromColorimportColor;
classFood(object):
def__init__(self,color):
self.color=color;
def__str__(self):
return'(%s)'%self.color;
black=Color(1,2,3);
drink=Food(black);
print(drink);
将Color类导入Food类的方式如下:
importsys;sys.path.append('/Users/chuxing/python/test');
fromColorimportColor;
以上内容为大家介绍了如何引入类python,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
python gensim库是什么?
pythongensim库是什么?gensim库在文本监控里,首先在稳定上,坚如磐石,不用担心稳定性问题,其次,时效性很强,执行能力很快,经常在最重要的...详情>>
2023-11-06 21:48:19python中getattr()是什么?
python中getattr()是什么?本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、getattr()用来获取对象中的属性值;获取对象object的属...详情>>
2023-11-06 21:41:07python标识符如何使用?
python标识符如何使用?为了给编程中函数、类等进行区分,会赋予它们不同的名称。我们把这种命名叫做标识符,也可以理解为符号的标记。当然这种...详情>>
2023-11-06 21:33:55Python IDE之Thonny的介绍
pythonIDE之Thonny的介绍今天要介绍的IDE,可能没用过,甚至可能没听说过。叫Thonny,是塔尔图大学开发的,适合程序员新手。它的界面很容易使用...详情>>
2023-11-06 20:54:19热门推荐
如何使用python中的help函数?
沸如何使用python的callable函数?
热python gensim库是什么?
热python中xluntils库是什么?
新python中getattr()是什么?
python中的win32com库是什么?
python标识符如何使用?
如何使用python中schedule模块?
python中ruamel.yaml模块是什么?
defaultdict在python中计算键值的和
python sleep和wait对比分析
python中字符串转成数字的几种方法
python中SocketServer是什么?
python中如何使用@contextmanage?