0

私の変数は inputnfo() で明確に定義されているのに、未定義のエラーが発生するのはなぜですか? おそらくtry&except?私は削除を追加しました...それをすべて交換し、解決策を見つけることができないようで、オンラインの回答は非常に状況に基づいているようです...事前に感謝します:)

超新しく改善された編集: UnboundLocalError を取得するようになりました

import random

alpha = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']

strgen = []

retry = 0

### Defining

def inputnfo():
    global much
    much = input('how long do you want your random word/lucky number to be: ')
    global which
    which = raw_input('would you like letters or numbers?(let,num, or mix?):').lower


def generate():
    while much > 0:
        if which == 'let':
            strgen.append(random.choice(alpha))
            much -= 1
            print '.'

        elif which == 'num':
            strgen.append(random.randint(1,9))
            much -= 1
            print '.'

        elif which == 'mix':
            mixer = random.choice([0,1])
            if mixer == 0:
                strgen.append(random.choice(alpha))
                much -= 1
                print '.'

            elif mixer == 1:
                strgen.append(random.randint(1,9))
                much -= 1
                print '.'

def finish():

    finito = ''.join(strgen)
    print 'Generation Completed!\n'

    if which == 'let':
        print 'Your randomly generated string is:' + finito

    elif which == 'num':
        print 'Your randomly generated number is:' + finito

    elif which == 'mix':
        print 'Your randomly generated Alpha-Numerical string is:' + finito

### Running

inputnfo()

while much != 0:
    generate()

finish()
4

1 に答える 1