12 lines
320 B
Python
12 lines
320 B
Python
from typing import List
|
|
|
|
LAPTOP_BRANDS = ['Dell', 'HP', 'Lenovo', 'Acer', 'Asus', 'Apple', 'Microsoft', 'Toshiba', 'Samsung', 'Sony']
|
|
|
|
def get_laptop_brands() -> List[str]:
|
|
"""
|
|
Retrieves a list of laptop brand names.
|
|
|
|
Returns:
|
|
List[str]: A list of laptop brand names.
|
|
"""
|
|
return LAPTOP_BRANDS |