if admin.isUserAdmin(): # This is on zero indent it's not inside a function or any other block
if n == 0:
global nzero
nzero = df.to_string()
print(nzero)
elif n > 0:
global ntrue
ntrue = df.head(n).to_string()
print(ntrue)
while live_update:
if n == 0:
global nzero2
nzero2 = df.to_string()
print(nzero2)
elif n > 0:
global ntrue2
ntrue2 = df.head(n).to_string()
print(ntrue2)
print(nzero) #error nzero is not defined
我有更复杂的代码,但为了方便起见,我简化了事情。
在上面的程序中,我想让nzero、nzero2、ntrue 和 ntrue2 成为全局的,即它应该在 if 块之外可用。但是当我在外面使用它时,它给我错误说 nzero is not Defined 同样适用于 nzero2、ntrue、ntrue2
子衿沉夜
开心每一天1111
繁花如伊
相关分类