私はコンピュータにランダムな出力を保存させてから追加しようとしています。作成したランダムな整数を追加する
例:
ran_num = 1 ; ran_total = 1
ran_num = 3 ; ran_total = 4
のように...
これは、すべてのwhile
ループです。
ran_total
が特定の番号に達するまで、それらの番号を追加し続けます。
これは私が修正しようとしているコードの一部です。
if player_bet <= Player.total_money_amount:
import random
computer_choice = random.randint(1, 5)
computer_choice_total =+computer_choice # Over Here
print('Computer choice: ', computer_choice)
print("Total Amount", computer_choice_total)
player_yes_or_no = input('Continue? Yes or No')
if player_yes_or_no == 'Yes':
期待どおりに動作していないことを教えてください。 – JETM
このループのすべての反復で 'ランダム'をインポートしないようにしたいと考えています。 –