本文介绍了你是怎么做数组的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Pyton的新人,我从书中学习而不是上课

所以请原谅我的行动很慢


以下不起作用我得到了一个文件错误

" Matrix [index] = k

NameError:name''iMatrix''未定义"


而索引< majorlop1:

index = index + 1

k = random.choice(listvalues)+ 1

iMatrix [index] = k




数组的书籍声明(typecode,初始化程序)对我来说没有任何意义

它是如何将组织名称的俄罗斯联盟遗忘的br />
数组。


谢谢

Tom

I am new at Pyton and I am learning from book not classes
so please forgive my being slow

The below does not work I get an Error of File
"Matrix[index] = k
NameError: name ''iMatrix'' is not defined"

while index < majorlop1:
index = index + 1
k = random.choice(listvalues) + 1
iMatrix[index] = k

The book statement of
array(typecode, initializer) does not make sence
to me how it henerates ore relaes to the org name
for the array.

Thank You
Tom

推荐答案





与任何其他变量一样,您需要在使用之前声明iMatrix:


Like any other variable, you need to declare iMatrix before you use it:


这篇关于你是怎么做数组的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 16:03