uma pergunta básica sobre "enquanto verdadeiro"

nível: iniciante

def play_game(word_list):
    hand = deal_hand(HAND_SIZE) # random init
    while True:
        cmd = raw_input('Enter n to deal a new hand, r to replay the last hand, or e to end game: ')
        if cmd == 'n':
            hand = deal_hand(HAND_SIZE)
            play_hand(hand.copy(), word_list)
            print
        elif cmd == 'r':
            play_hand(hand.copy(), word_list)
            print
        elif cmd == 'e':
            break
        else:
            print "Invalid command."

minha pergunta: enquanto o que é verdade?

eu acho que dizer 'enquanto verdadeiro' é uma abreviação, mas para quê? enquanto a variável 'mão' está sendo atribuída a um valor? e se a variável 'mão' não estiver sendo atribuída a um valor?

questionAnswers(15)

yourAnswerToTheQuestion