python随机函数不起作用,我在python上很新

时间:2018-10-10 06:26:26

标签: python-extensions

我在python中使用了随机函数,但是它不起作用,在python上我是一个非常新的人。请查看下面的代码

  def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context['number'] = random.randrange(1, 100)
        return context

其重新调整错误NameError:未定义名称“ random”

1 个答案:

答案 0 :(得分:0)

可能您没有导入随机模块。将此添加到脚本顶部:

import random