码迷,mamicode.com
首页 > 编程语言 > 详细

python 中问题,包括某些库的问题

时间:2019-07-28 14:19:00      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:assign   error   作用   pytho   turn   randn   +=   ogr   rand   

*)matplotlib animate中变量作用域的问题

错误提示:

UnboundLocalError: local variable ‘i‘ referenced before assignment

  代码:

i=0
def animate(frameno):

    x = mu + sigma * np.random.randn(N)
    n, _ = np.histogram(x, bins, normed=True)
    time_text.set_text(time_template%frameno)
    i+=1
    for rect, h in zip(patches, n):
        rect.set_height(h)
    return patches

  

python 中问题,包括某些库的问题

标签:assign   error   作用   pytho   turn   randn   +=   ogr   rand   

原文地址:https://www.cnblogs.com/Gaoqiking/p/11258442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!