Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from typing import List, Union
- def series_sum(incoming: List[Union[str, float]]) -> str:
- """Принимает на вход список из строк и чисел с плавающей точкой, приводит его элементы к строкам и конкатенирует их.
- """
- result = ''
- for i in incoming:
- result += str(i)
- return result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement