Python练习-模块和初级面像对象

这篇博客介绍了Python编程中的模块使用,包括定义、导入及参数传递。讲解了类的概念,展示了如何创建和使用类,包括私有属性、方法以及类的继承。示例中还演示了如何通过`__main__`判断执行方式,并给出了不同参数数量的函数调用示例。此外,文章还展示了Fruit和其子类Apple、Pear的定义与实例化。
摘要由CSDN通过智能技术生成
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
' a test module '

__author__ = 'OneCoder Lihz'

import sys


def test():
    args = sys.argv
    print("args:", args)
    if len(args) == 1:
        print('Hello, world!')
    elif len(args) == 2:
        print('Hello, %s!' % args[1])
    else:
        print('Too many arguments!')


# 测试用法,当import导入时,__name__不等于main,代码不会执行。
if __name__ == '__main__':
    test()

# __doc__访问模块注释
print(__doc__)

print(sys.path)


# 类
class Student:
    # 必须的属性
    def __init__(self, name, score):
        # 类访问限制,私有属性
        self.__name = name
        self.__score = score

    def print_score(self):
        print(self.__name, "'s score is:", self.__score)


stu1 = Student("Sun One", 98)
# 随意添加属性
stu1.age = 18
stu1.print_score()


class Fruit:
    def __init__(self, name):
        self.__name = name

    def print_name(self):
        print("Fruit name is", self.__name)


class Apple(Fruit):
    def print_name(self):
        print("This is an apple")


class Pear(Fruit):
    pass
    # def __init__(self, name):
    #     self.__name = name
    #     print("Print name in class pear", self.__name)


fruit = Fruit("Grape")
fruit.print_name()
apple = Apple("Apple")
apple.print_name()
pear = Pear("Pear")
pear.print_name()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值