TORONTO KIDS COMPUTER CLUB | Friday Python Practice 20:30 – 22.11.18
21422
post-template-default,single,single-post,postid-21422,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Friday Python Practice 20:30 – 22.11.18

23 Nov Friday Python Practice 20:30 – 22.11.18

Question:

Write a function luckySum(a, b, c) to calculate sum of given 3 int values, a b c. The function will have a return value of their sum. However, if one of the values is 13 then it does not count towards the sum and values to its right do not count. So for example, if b is 13, then both b and c do not count.


Sample Input 1:

a: 1
b: 2
c: 3

Sample Output 1
The lucky sum is 6


Sample Input 2:

a: 1
b: 2
c: 13

Sample Output 2:
The lucky sum is 3

(Because c is 13, c does not count towards the sum)


Sample Input 3:

a: 1
b: 13
c: 3

Sample Output 3
The lucky sum is 1

(Because b is 13, both b and c does not count towards the sum)

No Comments

Sorry, the comment form is closed at this time.