Advertisement
Alaricy

аннотация типов модуль typing 2/3

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