Я не могу выйти из цикла while
#python Вопрос: # Dice Rolling Random Number and Guessing Game import random user_choice = 'y' while user_choice != 'N' or user_choice != 'n': print(random.randint(1,6)) user_choice = input("Do you want to…
#python Вопрос: # Dice Rolling Random Number and Guessing Game import random user_choice = 'y' while user_choice != 'N' or user_choice != 'n': print(random.randint(1,6)) user_choice = input("Do you want to…