Avatar
from typing import List list: List[int] = [2, 3, 5] squared: List[int] = [x * x for x in list]