Question: python Question 12 1 pts Consider the following program: X = Atlanta 47 y x.upper().count('a') After you run this program, why is y zero and
Question 12 1 pts Consider the following program: X = Atlanta 47 y x.upper().count('a') After you run this program, why is y zero and not 2? You need to select All correct answers Because we first transform the string to upper case, and then count the If we would first transform to upper case, and then count A instead of a we would get 3 If we would first transform to lower case and then count 'a we would get 2 If we would not change the case (just use "x.count(a) we would get 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
