Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using Try\Except solution in Clear category for Sum by Type by Kolia951
from typing import Tuple
def sum_by_types(items: list) -> Tuple[str, int]:
""" Returns summ of strings and integers in the given list """
sum_strings = ""
sum_integers = 0
for i in items:
try:
sum_integers += i
except:
sum_strings += i
return (sum_strings, sum_integers)
if __name__ == "__main__":
print("Example:")
print(sum_by_types([]))
# These "asserts" are used for self-checking and not for an auto-testing
assert sum_by_types([]) == ("", 0)
assert sum_by_types([1, 2, 3]) == ("", 6)
assert sum_by_types(["1", 2, 3]) == ("1", 5)
assert sum_by_types(["1", "2", 3]) == ("12", 3)
assert sum_by_types(["1", "2", "3"]) == ("123", 0)
assert sum_by_types(["size", 12, "in", 45, 0]) == ("sizein", 57)
print("Coding complete? Click 'Check' to earn cool rewards!")
Nov. 22, 2021
Comments: