鱼C论坛

 找回密码
 立即注册
查看: 622|回复: 10

为什么和小甲鱼一样的代码输出结果不一样......

[复制链接]
发表于 2020-4-3 10:29:56 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
我是跟着视频一起敲的呀......
class C:
    def __getattribute__(self, name):
        print('getattribute')
        return super().__getattribute__(name)
    def __getattr__(self, name):
        print('getattr')
#       super().__getattr__(name)
    def __setattr__(self, name, value):
        print('setattr')
        super().__setattr__(name, value)
    def __delattr__(self, name):
        print('delattr')
        super().__delattr__(name)

回车后输出结果:
getattribute
getattribute
getattribute
getattribute
getattribute

c = C()

getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
getattribute
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-3 10:45:05 | 显示全部楼层
本帖最后由 Worromot 于 2020-4-3 10:48 编辑

https://www.bilibili.com/video/BV1MW411H79p?p=47



这是这一期视频
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-3 11:17:38 | 显示全部楼层
本帖最后由 Worromot 于 2020-4-3 11:23 编辑

定义一个实例后c = C()
就打印出很多的getattribute......
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-3 11:29:58 | 显示全部楼层
Python 用的是3.6.5,会不会和版本有关?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 12:14:34 | 显示全部楼层
Worromot 发表于 2020-4-3 11:29
Python 用的是3.6.5,会不会和版本有关?

我这里什么都没有哦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 12:58:19 | 显示全部楼层
应该是和 Python 的版本有关
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 12:59:35 | 显示全部楼层
什么也没发生
>>> class C:
    def __getattribute__(self, name):
        print('getattribute')
        return super().__getattribute__(name)
    def __getattr__(self, name):
        print('getattr')
#       super().__getattr__(name)
    def __setattr__(self, name, value):
        print('setattr')
        super().__setattr__(name, value)
    def __delattr__(self, name):
        print('delattr')
        super().__delattr__(name)

        
>>> c=C()
>>> 
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 21:23:27 | 显示全部楼层
小甲鱼录视频的时候还是python3.4,所以应该不是版本的问题。很奇怪,复制这段代码大家运行都没问题,我看你的描叙是输完后按回车,那么你是在shell里面输入的?建议你试试new file后录入保存再运行看看结果。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-7 10:15:07 | 显示全部楼层
我也是,什么反应都没有-_-,不管是在new file还是在Shell。本人用的最新3.8.2版本
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-7 10:56:13 | 显示全部楼层
我用的3.8.1,视频里的所有代码(除了部分爬虫)都可以正常运行,包括这个
什么也没发生啊
>>> class C:
    def __getattribute__(self, name):
        print('getattribute')
        return super().__getattribute__(name)
    def __getattr__(self, name):
        print('getattr')
#       super().__getattr__(name)
    def __setattr__(self, name, value):
        print('setattr')
        super().__setattr__(name, value)
    def __delattr__(self, name):
        print('delattr')
        super().__delattr__(name)

>>> c = C()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-8 21:02:17 | 显示全部楼层
txxcat 发表于 2020-4-3 21:23
小甲鱼录视频的时候还是python3.4,所以应该不是版本的问题。很奇怪,复制这段代码大家运行都没问题,我看 ...

我用的是Pycharm, 试了一下用Shell就不会有问题,很奇怪
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 03:40

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表