Question: Write line by line clear pseudocode Write line by line clear pseudocode def cardValue(c): if c.upper() in 'JQK': return 10 if c.upper() == 'A': while
Write line by line clear pseudocode
Write line by line clear pseudocode
def cardValue(c): if c.upper() in 'JQK': return 10 if c.upper() == 'A': while True: choice = input('Enter 1 for considering Ace as 11, 2 for considering it as 1: ') if choice == '1': return 11 elif choice == '2': return 1 else: print('Incorrect choice') return int(c) print('Starting the cards value sum code: ') while True: x = cardValue(input('Enter numeric value of card1: ')) y = cardValue(input('Enter numeric value of card2: ')) if x==0 and y==0: print('Goodbye! Exiting now!') break s = x + y if s == 21: print('Sum: %d*' % s) else: print('Sum:', s) print()
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
