如何修复:UnboundLocalError:赋值前引用的局部变量“generate”

2024-07-07 06:48:13 发布

您现在位置:Python中文网/ 问答频道 /正文

Error:  UnboundLocalError: local variable 'generate' referenced before assignment

为什么它会给我这个错误

代码

import string
import random

Password = ""

lettere = string.ascii_letters
numeri = string.digits
punteggiatura = string.punctuation

def getPasswordLenght():
    lenght = input("How log do you want your password...\n>>> ")
    return int(lenght)

def passwordGenerator(lenght):

  caratteri = ""
 
 requestPunteggiatutaIclusa = input("Punteggiatura (YES | NO)\n>>> ")
 if requestPunteggiatutaIclusa.upper() == "YES" :
      caratteri = f"{lettere}{numeri}{punteggiatura}"
      generate(lenght)

 elif requestPunteggiatutaIclusa.upper() == "NO" :
      caratteri = f"{lettere}{numeri}"
      generate(lenght)

 else :
      print("Error")
      passwordGenerator(lenght)
      
 return Password

 def generate(lenght) :
      caratteri = list(caratteri)
      random.shuffle(caratteri)
                
      Password = ""
           
      for i in range(lenght):
           Password = Password + caratteri[i]
           i = i + 1
      return Password

passwordGenerator(getPasswordLenght())
print(Password)

结果

How log do you want your password...
8
Punteggiatura (YES | NO)
yes
Traceback (most recent call last):
  File "/Users/paolo/Desktop/COde/PY/passwordGenerator.py", line 46, in <module>
    passwordGenerator(getPasswordLenght())
  File "/Users/paolo/Desktop/COde/PY/passwordGenerator.py", line 33, in passwordGenerator
    generate(lenght)
  File "/Users/paolo/Desktop/COde/PY/passwordGenerator.py", line 19, in generate
    caratteri = list(caratteri)
UnboundLocalError: local variable 'caratteri' referenced before assignment

Tags: noinstringreturndefpasswordgenerateyes
1条回答
网友
1楼 · 发布于 2024-07-07 06:48:13

你知道什么是local variable


caratteri = ""创建仅存在于passwordGenerator()内部的局部变量,但在使用list(caratteri)时,尝试在generate()中使用它

generate()中,当您使用caratteri = list(...)时也会创建局部变量,但在尝试从caratteri中获取值后会创建局部变量,这会产生错误local variable 'caratteri' referenced before assignment

更好地显式使用变量-将它们作为参数发送

generate(lenght, caratteri) 

Password有同样的问题

您创建了全局变量Password = "",但在generate()内部您创建了局部变量Password = ""。在generate()中,您可以使用global Password来处理全局Password,而不是创建局部Password,但不能使用从函数返回的值

Password = generate(lenghtt, caratteri)

我的版本有很多其他的变化

import string
import random

#  - functions  -

def ask_questions():
    length = input("Password length\n>>> ")
    length = int(length)
    
    # In Linux it is popular to use upper case text in `[ ]` 
    # to inform user that if he press only `ENTER` 
    # then system will use this value as default answer. 
    # I inform user that `N` is default answer.
    # I don't like long answers like `yes`, `no` but short `y`, n`
    # and many program in Linux also use short `y`,`n`
    answer = input("Use punctuations [y/N]\n>>> ")  
    answer = answer.upper()

    characters = string.ascii_letters + string.digits
     
    if answer == "Y":
        characters += string.punctuation
    elif answer != "" and answer != "N":
        print("Wrong answer. I will use default settings")
    
    return length, characters

def generate(lenght, characters):
    characters = list(characters)
    random.shuffle(characters)
                
    password = characters[0:lenght]
    password = ''.join(password)
    
    return password

#  - main  -

# I seperate questions and code which generates password
# and this way I could use `generate` with answers from file or stream
length, characters = ask_questions()
password = generate(length, characters)
print(password)

PEP 8 StyleGuide for Python Code

相关问题 更多 >