python - os.popen的返回对象没有__next__方法,为什么可以调用?

查看:125
本文介绍了python - os.popen的返回对象没有__next__方法,为什么可以调用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

我在使用os.popen方法的时候,返回了一个对象,但是通过dir()查看该方法并没有__next__()方法,然而却成功调用。代码如下:

>>> x = os.popen('ls')
>>> dir(x)
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__',
 '__format__', '__ge__', '__getattr__', '__getattribute__', '__gt__', '__hash__', '__init__', 
'__iter__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', 
'__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_proc', 
'_stream', 'close']
>>> x.__next__()
'jobs\n'

使用的是python3,请问这是为什么?

解决方案

已经找到答案:
http://stackoverflow.com/ques...

这篇关于python - os.popen的返回对象没有__next__方法,为什么可以调用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆