-3

構文エラーを修正するために引用を修正しました。今私が受け取っているエラーはこれです:

Traceback (most recent call last):
  File "C:\Users\Alex\Desktop\Programming Concepts\Labs\Chapter 11\Lab 8.py", line 78, in <module>
    main()
  File "C:\Users\Alex\Desktop\Programming Concepts\Labs\Chapter 11\Lab 8.py", line 18, in main
    totalPints = getTotal(pints)
  File "C:\Users\Alex\Desktop\Programming Concepts\Labs\Chapter 11\Lab 8.py", line 42, in getTotal
    totalPints += pints[counter]
  UnboundLocalError: local variable 'totalPints' referenced before assignment

これまでの私のコードは次のとおりです。

# Lab 8-3 Blood Drive

# The main function
def main():
    endProgram = 'no'
    print
    while endProgram == 'no':
        print
        # Declare variables
        pints = [0] * 7

        # Function calls
        pints = getPints(pints)
        totalPints = getTotal(pints)
        averagePints = getAverage(totalPints)
        highPints = getHigh(pints)
        lowPints = getLow(pints)
        displayInfo(averagePints, highPints, lowPints)

        endProgram = input('Do you want to end program? (Enter no or yes): ')
        while not (endProgram == 'yes' or endProgram == 'no'):
            print('Please enter a yes or no')
            endProgram = input('Do you want to end program? (Enter no or yes): ')

# The getPints function
def getPints(pints):
    counter = 0
    while counter < 7:
        numEntered = input('Enter pints collected: ')
        pints[counter] = int(numEntered)
        counter += 1
    return pints

# The getTotal function
def getTotal(pints):
    counter = 0
    while counter < 7:
        totalPints += pints[counter]
        counter += 1
    return totalPints

# The getAverage function
def getAverage(totalPints):
    averagePints = float(totalPints) / 7
    return averagePints

# The getHigh function
def getHigh(pints):
    highPints = pints[0]
    counter = 1
    while counter < 7:
        if pints[counter] > highPints:
            highPints = pints[counter]
        counter += 1
    return highPints

# The getLow function
def getLow():
    lowPints = pints[0]
    counter = 1
    while counter < 7:
        if pints[counter] < lowPints:\
           lowPints = pints[counter]
        counter += 1
    return lowPints

# The displayInfo function
def displayInfo(averagePints, highPints, lowPints):
    print('The average number of pints donated is ',averagePints)
    print('The highest pints donated is ', highPints)
    print('The lowest number of pints donated is ', lowPints)

# Calls main
main()

誰かがこのコードをコピーして python に貼り付けて、トラブルシューティングを手伝ってくれるなら、私はとても助かります!

4

3 に答える 3

3
于 2012-07-30T03:33:07.567 に答える
0

「割り当て前に参照される変数」は、まだ存在しない変数を使用していることを意味します。あなたのコードでは、問題は次の行です。

totalPints += pints[counter]

これは、totalPints の最初の出現です。「+=」の構造は以下とまったく同じであることに注意してください

totalPints = totalPints + pints[counter]

そして、それはpythonが反対している右側の出来事です. これを解決するには、変数を次のように初期化します

totalPints = 0

ループに入る前に。

于 2012-07-30T20:31:25.970 に答える
0

まあ、それは簡単な修正です。何かを追加する前に、変数を割り当てるだけです。

totalPins = 0

また

totalPins = ""

ループに入る前にトリックを行う必要があります。

于 2012-08-01T04:47:58.107 に答える