首页 > 编程语言 > 详细

python类学习

时间:2019-12-21 23:34:38      阅读:93      评论:0      收藏:0      [点我收藏+]

创建关于汽车的类

class Cars():

    def __init__(self, brand, country):
        self.brand = brand
        self.country = country

    def show_brand(self):
        print(self.brand.title() + " is a popular automobile brand.")

    def show_country(self):
        print("Its headquater is in " + self.country.title() + ".")


my_car = Cars(toyota, Japan)
my_car.show_brand()
my_car.show_country()

输出

技术分享图片
Toyota is a popular automobile brand.
Its headquater is in Japan.
View Code

 

python类学习

原文:https://www.cnblogs.com/ilifeilong/p/12078588.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!