Count number of even elements in a user given tuple in Python. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Count number of even elements in a user given tuple in Python.

13th Oct 2018, 4:43 AM
Mayank Kumar
Mayank Kumar - avatar
5 Réponses
+ 3
Algorithm: Begin by setting a counter variable to zero. Then iterate over the elements of the tuple using a for loop. Check whether an element is even by testing its remainder module 2. If even, increase the counter by 1. The final value of the counter is your answer. If you have difficulty implementing it, share your attempt, and we'll be happy to help you.
13th Oct 2018, 5:23 AM
Kishalaya Saha
Kishalaya Saha - avatar
13th Oct 2018, 7:20 AM
Mayank Kumar
Mayank Kumar - avatar
+ 1
Tried the same but shows error.
13th Oct 2018, 7:03 AM
Mayank Kumar
Mayank Kumar - avatar
+ 1
Okay! Save your code in the code playground, and share a link to your code as a comment here. I'm sure someone will be able to figure out what's wrong.
13th Oct 2018, 7:10 AM
Kishalaya Saha
Kishalaya Saha - avatar
+ 1
Oh, the algorithm is fine, the problem is with input processing. The user input is taken as a string, and not treated as a real tuple. Try this: t=tuple(map(int, input().split())) And don't use parentheses or commas in your input, just spaces. OR, if you insist on taking input as a nice tuple with parentheses, commas, and spaces, you could do this: t = input("Enter tuple with parenthesis: ") for c in "(),": t = t.replace(c, " ") t = tuple(map(int, t.split()))
13th Oct 2018, 7:54 AM
Kishalaya Saha
Kishalaya Saha - avatar