#!/usr/bin/python3 # -*- coding: utf-8 -*- from typing import List, Any def print_array(my_array: List[Any]) -> None: for item in my_array: print(item) some_array: List[int] = [4, 3, 1] print_array(some_array) another_array: List[str] = ["hey", "you"] print_array(another_array)