0

これは Python 3 です。ユーザーがプールに残っているポイントが 0 で、キー値からポイントを取得してプールに追加した場合、プログラムは中断します。この時点でプール > 0 であり、最初の while ループが開始されるはずですが、開始されないため、これは私を混乱させます。誰でも理由について説明できますか?

PS- 一般的なコードの批評も歓迎します。これに新しい。

pool = 30

attr = {'Strength' : 0, 'Health' : 0, 'Wisdom' : 0, 'Dexterity' : 0}
while pool > 0:
    print('\t\t Time to spend some points! You have', pool, 'to spend')
    spend = input('Where would you like to spend your points?')
    if spend in attr:
        amount = int(input('How many points would you like to spend?'))
        if amount > pool:
            print('You do not have that many points! You have', pool, 'points!')
        else:
            attr[spend] = amount
            pool -= amount
            print(attr)
    else:
        print('Not a valid input. Please correct.')

print('\t\t You have no more points! Add some to the pool!')

while pool == 0:
    confirm = input('Would you like to add points back into the pool?')
    if confirm == 'y':
       take =  input('Where would you like to take points from?')
       if take in attr:
            number = int(input('How many points would you like to take?'))
            if attr[take] >= number:
                pool += number
                attr[take] -= number
                print ('There are now', pool, 'points remaining') 
            elif attr[take] < number:
                    print('You dont have enough points to do that! You have', attr[take], 'points in', take)
       else:
           print('Please make a valid selection.')
    elif confirm == 'n':
        print('Goodbye!')
        break
4

2 に答える 2

1

最初のループが終了pool==0すると、コードが最初のループに戻る方法はありません。

これを試して:

while pool >= 0:
    if pool>0:
        print('\t\t Time to spend some points! You have', pool, 'to spend')
        spend = input('Where would you like to spend your points?')
        if spend in attr:
            amount = int(input('How many points would you like to spend?'))
            if amount > pool:
                print('You do not have that many points! You have', pool, 'points!')
            else:
                attr[spend] = amount
                pool -= amount
                print(attr)
        else:
            print('Not a valid input. Please correct.')



    if pool == 0:
        print('\t\t You have no more points! Add some to the pool!')
        confirm = input('Would you like to add points back into the pool?')
        if confirm == 'y':
           take =  input('Where would you like to take points from?')
           if take in attr:
                number = int(input('How many points would you like to take?'))
                if attr[take] >= number:
                    pool += number
                    attr[take] -= number
                    print ('There are now', pool, 'points remaining') 
                elif attr[take] < number:
                        print('You dont have enough points to do that! You have', attr[take], 'points in', take)
           else:
               print('Please make a valid selection.')
        elif confirm == 'n':
            print('Goodbye!')
            break
于 2013-10-22T03:22:18.707 に答える