Refer to the following code. When the program prints ‘List i…

Refer to the following code. When the program prints ‘List is ready’, how many dictionaries are in the list myList? SUIT_TUPLE = (‘Spades’, ‘Hearts’)RANK_TUPLE = (‘Jack’, ‘Queen’, ‘King’)myList = []for suit in SUIT_TUPLE: thisValue = 0    for rank in RANK_TUPLE:        cardDict = {‘rank’:rank, ‘suit’:suit, ‘value’:thisValue + 1}       myList.append(cardDict)       thisValue += 1;print(‘List is ready’)print(‘Bye’)