Tag: python

ImportError:无法导入名称X.

我有四个不同的文件名为:主,vector,实体和物理。 我不会发布所有的代码,主要是import,因为我认为这是错误的地方。 但如果你想,我可以发布更多。 主要: import time from entity import Ent from vector import Vect #the rest just creates an entity and prints the result of movement 实体: from vector import Vect from physics import Physics class Ent: #holds vector information and id def tick(self, dt): #this is where physics changes the velocity and position vectors […]

如何创build目录的zip存档

如何在Python中创build一个目录结构的zip压缩文件?

为什么绘制Matplotlib这么慢呢?

我目前正在评估不同的Python绘图库。 现在我正在尝试matplotlib,我对这个performance感到非常失望。 下面的例子是从SciPy例子中修改的,只给了我每秒〜8帧! 任何加快速度的方法,或者我应该select一个不同的阴谋库? from pylab import * import time ion() fig = figure() ax1 = fig.add_subplot(611) ax2 = fig.add_subplot(612) ax3 = fig.add_subplot(613) ax4 = fig.add_subplot(614) ax5 = fig.add_subplot(615) ax6 = fig.add_subplot(616) x = arange(0,2*pi,0.01) y = sin(x) line1, = ax1.plot(x, y, 'r-') line2, = ax2.plot(x, y, 'g-') line3, = ax3.plot(x, y, 'y-') line4, = […]

Python进度条

当我的脚本正在做一些可能需要时间的任务时,如何使用进度条? 例如,一个需要一些时间才能完成的函数,完成后返回True 。 如何在函数执行期间显示进度条? 请注意,我需要这个实时,所以我不知道该怎么做。 我需要一个thread吗? 我不知道。 现在我不打印任何东西,而function正在执行,但进度条会很好。 另外,我更关心如何从代码的angular度来完成这个工作。

用pip安装SciPy

用pip install numpy可以pip install numpy 。 SciPy有没有类似的可能性? (做pip install scipy不起作用。) 更新 SciPy软件包现在可以与pip一起安装!

在代码中安装python模块

我需要从PyPi直接在我的脚本中安装一个软件包。 也许有存在模块或distutils(分布,点)能力,让我只是执行像pypi.install('requests')和请求将被安装到我的virtualenv,我不应该在我的shell中键入pip install requests ?

正确的方法来处理在Django的一个页面上的多个表单

我有一个期望两种forms的模板页面。 如果我只使用一种forms,就像在这个典型的例子中那样: if request.method == 'POST': form = AuthorForm(request.POST,) if form.is_valid(): form.save() # do something. else: form = AuthorForm() 但是,如果我想用多种forms工作,我如何让视图知道我只提交了其中一个表单而不是其他表单(即它仍然是request.POST,但我只想处理提交的表单事情)吗? 这是基于答案的解决scheme ,其中, expectedphrase和bannedphrase是不同forms的提交button的名称, expectedphraseform和bannedphraseform是forms。 if request.method == 'POST': if 'bannedphrase' in request.POST: bannedphraseform = BannedPhraseForm(request.POST, prefix='banned') if bannedphraseform.is_valid(): bannedphraseform.save() expectedphraseform = ExpectedPhraseForm(prefix='expected') elif 'expectedphrase' in request.POST: expectedphraseform = ExpectedPhraseForm(request.POST, prefix='expected') if expectedphraseform.is_valid(): expectedphraseform.save() bannedphraseform = […]

致命错误:Python.h:没有这样的文件或目录

我正在尝试使用C扩展名文件构build共享库,但首先必须使用以下命令生成输出文件: gcc -Wall utilsmodule.c -o Utilc 执行命令后,我得到这个错误消息: utilsmodule.c:1:20:致命错误:Python.h:没有这样的文件或目录编译终止。 实际上我已经尝试了所有在互联网上的build议解决scheme,但问题仍然存在…我也没有与Python.h问题。 我设法find我的机器上的文件…任何人都面临同样的问题之前?

如何正确清理Python对象?

class Package: def __init__(self): self.files = [] # … def __del__(self): for file in self.files: os.unlink(file) __del__(self)失败,出现AttributeErrorexception。 我知道当__del__()被调用时, Python不能保证 “全局variables”(这个上下文中的成员数据?)的__del__() 。 如果是这种情况,这是exception的原因,我如何确保对象正常破坏?

你可以使用什么Python生成器函数?

我开始学习Python,并且遇到了生成器函数,那些函数有一个yield语句。 我想知道这些function真正擅长解决什么types的问题。